summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-08-25 20:48:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-08-25 20:48:43 +0000
commit49460dc6d460af817e1d3478faaf2bd2a6e8871b (patch)
tree7a029edc5952c5738e3068d2f71300ed1444b3a4
parent2010-08-25 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-49460dc6d460af817e1d3478faaf2bd2a6e8871b.tar.bz2
2010-08-25 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/src/coremsginsert.c: Fix typo.
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/score/src/coremsginsert.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 7d902608cb..2f190159b1 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,9 @@
2010-08-25 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * score/src/coremsginsert.c: Fix typo.
+
+2010-08-25 Joel Sherrill <joel.sherrill@oarcorp.com>
+
Coverity Id 148/STRAY_SEMICOLON
* score/src/coremsginsert.c: Slightly modify macro.
diff --git a/cpukit/score/src/coremsginsert.c b/cpukit/score/src/coremsginsert.c
index 0c7d74f6ec..eaccdc0d1b 100644
--- a/cpukit/score/src/coremsginsert.c
+++ b/cpukit/score/src/coremsginsert.c
@@ -60,7 +60,7 @@ void _CORE_message_queue_Insert_message(
bool notify = false;
#define SET_NOTIFY() \
do { \
- if ( the_message_queue->number_of_pending_messages == 0 )
+ if ( the_message_queue->number_of_pending_messages == 0 ) \
notify = true; \
} while (0)
#else