summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/coremsginsert.c
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 /cpukit/score/src/coremsginsert.c
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.
Diffstat (limited to 'cpukit/score/src/coremsginsert.c')
-rw-r--r--cpukit/score/src/coremsginsert.c2
1 files changed, 1 insertions, 1 deletions
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