summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/inline
diff options
context:
space:
mode:
authorEric Norum <WENorum@lbl.gov>2006-01-15 18:51:30 +0000
committerEric Norum <WENorum@lbl.gov>2006-01-15 18:51:30 +0000
commit5464eefa13b68de98d0860741243b9565154ef1f (patch)
tree2776e2af225fc38b0ac59caae9df574c954b24bb /cpukit/posix/inline
parentRegenerate. (diff)
downloadrtems-5464eefa13b68de98d0860741243b9565154ef1f.tar.bz2
Keep compiler happy by making some casts explicit. (PR859)
Diffstat (limited to 'cpukit/posix/inline')
-rw-r--r--cpukit/posix/inline/rtems/posix/cond.inl2
-rw-r--r--cpukit/posix/inline/rtems/posix/mutex.inl2
2 files changed, 2 insertions, 2 deletions
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; \