summaryrefslogtreecommitdiffstats
path: root/cpukit
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
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 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/score/src/coremsgbroadcast.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 7e9c2bfc63..1a940285c1 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-13 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * score/src/coremsgbroadcast.c: Fix typo.
+
2009-09-13 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/src/coremsgsubmit.c: Remove extra #else.
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;