summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/tsnd_mbf.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 16:04:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 16:04:00 +0000
commit22d66ab1af9cafec423a78692286c64b4da1c80b (patch)
treeae1d5b5934a07f5c4906d754f3acac4812e4a4a6 /cpukit/itron/src/tsnd_mbf.c
parentConvert to "bool". (diff)
downloadrtems-22d66ab1af9cafec423a78692286c64b4da1c80b.tar.bz2
Convert to "bool".
Diffstat (limited to 'cpukit/itron/src/tsnd_mbf.c')
-rw-r--r--cpukit/itron/src/tsnd_mbf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/itron/src/tsnd_mbf.c b/cpukit/itron/src/tsnd_mbf.c
index bd6cc33fbf..c6df538572 100644
--- a/cpukit/itron/src/tsnd_mbf.c
+++ b/cpukit/itron/src/tsnd_mbf.c
@@ -36,7 +36,7 @@ ER tsnd_mbf(
ITRON_Message_buffer_Control *the_message_buffer;
Objects_Locations location;
Watchdog_Interval interval;
- boolean wait;
+ bool wait;
CORE_message_queue_Status msg_status;
if (msgsz <= 0 || !msg)
@@ -44,9 +44,9 @@ ER tsnd_mbf(
interval = 0;
if ( tmout == TMO_POL ) {
- wait = FALSE;
+ wait = false;
} else {
- wait = TRUE;
+ wait = true;
if ( tmout != TMO_FEVR )
interval = TOD_MILLISECONDS_TO_TICKS(tmout);
}