summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/corerwlock.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/corerwlock.c')
-rw-r--r--cpukit/score/src/corerwlock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/corerwlock.c b/cpukit/score/src/corerwlock.c
index eae62584e9..51ae2c70df 100644
--- a/cpukit/score/src/corerwlock.c
+++ b/cpukit/score/src/corerwlock.c
@@ -28,5 +28,5 @@ void _CORE_RWLock_Initialize(
the_rwlock->number_of_readers = 0;
the_rwlock->current_state = CORE_RWLOCK_UNLOCKED;
- _Thread_queue_Initialize( &the_rwlock->Wait_queue );
+ _Thread_queue_Object_initialize( &the_rwlock->Wait_queue );
}