summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/conddestroy.c
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/src/conddestroy.c
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/src/conddestroy.c')
-rw-r--r--cpukit/posix/src/conddestroy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/posix/src/conddestroy.c b/cpukit/posix/src/conddestroy.c
index a6d2c0fc81..43f7045de6 100644
--- a/cpukit/posix/src/conddestroy.c
+++ b/cpukit/posix/src/conddestroy.c
@@ -27,8 +27,8 @@ int pthread_cond_destroy(
pthread_cond_t *cond
)
{
- register POSIX_Condition_variables_Control *the_cond;
- Objects_Locations location;
+ POSIX_Condition_variables_Control *the_cond;
+ Objects_Locations location;
the_cond = _POSIX_Condition_variables_Get( cond, &location );
switch ( location ) {