From 5464eefa13b68de98d0860741243b9565154ef1f Mon Sep 17 00:00:00 2001 From: Eric Norum Date: Sun, 15 Jan 2006 18:51:30 +0000 Subject: Keep compiler happy by making some casts explicit. (PR859) --- cpukit/posix/inline/rtems/posix/cond.inl | 2 +- cpukit/posix/inline/rtems/posix/mutex.inl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/posix/inline') diff --git a/cpukit/posix/inline/rtems/posix/cond.inl b/cpukit/posix/inline/rtems/posix/cond.inl index 30233ddc38..ede9ab3532 100644 --- a/cpukit/posix/inline/rtems/posix/cond.inl +++ b/cpukit/posix/inline/rtems/posix/cond.inl @@ -72,7 +72,7 @@ RTEMS_INLINE_ROUTINE POSIX_Condition_variables_Control * Do an "auto-create" here. */ - status = pthread_cond_init( id, 0 ); + status = pthread_cond_init( (pthread_cond_t *)id, 0 ); if ( status ) { *location = OBJECTS_ERROR; return (POSIX_Condition_variables_Control *) 0; diff --git a/cpukit/posix/inline/rtems/posix/mutex.inl b/cpukit/posix/inline/rtems/posix/mutex.inl index 15d5af0b3e..85d3dcc1f5 100644 --- a/cpukit/posix/inline/rtems/posix/mutex.inl +++ b/cpukit/posix/inline/rtems/posix/mutex.inl @@ -65,7 +65,7 @@ RTEMS_INLINE_ROUTINE void _POSIX_Mutex_Free ( * Do an "auto-create" here. \ */ \ \ - _status = pthread_mutex_init( _id, 0 ); \ + _status = pthread_mutex_init( (pthread_mutex_t *)_id, 0 ); \ if ( _status ) { \ *_location = OBJECTS_ERROR; \ return (POSIX_Mutex_Control *) 0; \ -- cgit v1.2.3