summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/inline
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-02-01 18:57:34 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-02-01 18:57:34 +0000
commitd2e1d3a39e669c55c071fb9183fc073766e819fa (patch)
tree858a94eedf7f56f8802995a698d17854bddfb6e2 /cpukit/posix/inline
parent2006-02-01 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-d2e1d3a39e669c55c071fb9183fc073766e819fa.tar.bz2
2006-02-01 Joel Sherrill <joel@OARcorp.com>
* posix/inline/rtems/posix/cond.inl, posix/macros/rtems/posix/cond.inl, posix/src/conddestroy.c: Remove warnings.
Diffstat (limited to 'cpukit/posix/inline')
-rw-r--r--cpukit/posix/inline/rtems/posix/cond.inl3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/posix/inline/rtems/posix/cond.inl b/cpukit/posix/inline/rtems/posix/cond.inl
index ede9ab3532..7d112cdf12 100644
--- a/cpukit/posix/inline/rtems/posix/cond.inl
+++ b/cpukit/posix/inline/rtems/posix/cond.inl
@@ -56,10 +56,11 @@ RTEMS_INLINE_ROUTINE void _POSIX_Condition_variables_Free (
RTEMS_INLINE_ROUTINE POSIX_Condition_variables_Control
*_POSIX_Condition_variables_Get (
- Objects_Id *id,
+ pthread_cond_t *cond,
Objects_Locations *location
)
{
+ Objects_Id *id = (Objects_Id *)cond;
int status;
if ( !id ) {