summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-11-04 07:39:45 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-11-04 07:39:45 +0100
commiteab538cf9e6c16f3ff902bf340ed0111d58fc35b (patch)
treef69f8c3ec82a6430d618f051bf057e55117f715c
parentsptests/spsimplesched02: Fix warning (diff)
downloadrtems-eab538cf9e6c16f3ff902bf340ed0111d58fc35b.tar.bz2
score: Fix warning
Close #2454.
-rw-r--r--cpukit/score/src/threadqops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/threadqops.c b/cpukit/score/src/threadqops.c
index 7b017793ed..5a82aaa33e 100644
--- a/cpukit/score/src/threadqops.c
+++ b/cpukit/score/src/threadqops.c
@@ -199,7 +199,7 @@ static void _Thread_queue_Priority_do_initialize(
#if defined(RTEMS_SMP)
_Chain_Initialize_empty( &heads->Heads.Fifo );
#else
- _RBTree_Initialize_empty( &heads->Heads.Priority );
+ _RBTree_Initialize_empty( &heads->Heads.Priority.Queue );
#endif
}