From eab538cf9e6c16f3ff902bf340ed0111d58fc35b Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 4 Nov 2015 07:39:45 +0100 Subject: score: Fix warning Close #2454. --- cpukit/score/src/threadqops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- cgit v1.2.3