summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/coremsgbroadcast.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-13 20:12:09 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-13 20:12:09 +0000
commit039cb994a9f0c9dd28ca7a937c503cb87e9b588d (patch)
treeaa93aecb51b2c05d13b11da5920f0ab95769e5b3 /cpukit/score/src/coremsgbroadcast.c
parent2009-09-13 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-039cb994a9f0c9dd28ca7a937c503cb87e9b588d.tar.bz2
2009-09-13 Joel Sherrill <joel.sherrill@OARcorp.com>
* score/src/coremsgbroadcast.c: Fix typo.
Diffstat (limited to '')
-rw-r--r--cpukit/score/src/coremsgbroadcast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/src/coremsgbroadcast.c b/cpukit/score/src/coremsgbroadcast.c
index fc89a8ad5f..f8f76b0a38 100644
--- a/cpukit/score/src/coremsgbroadcast.c
+++ b/cpukit/score/src/coremsgbroadcast.c
@@ -93,7 +93,7 @@ CORE_message_queue_Status _CORE_message_queue_Broadcast(
*/
number_broadcasted = 0;
while ((the_thread =
- _Thread_queue_Dequeue(&the_message_queue->Wait_queue) != NULL)) {
+ _Thread_queue_Dequeue(&the_message_queue->Wait_queue))) {
waitp = &the_thread->Wait;
number_broadcasted += 1;