summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/conddestroy.c
diff options
context:
space:
mode:
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 ) {