summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/tsnd_mbf.c
diff options
context:
space:
mode:
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);
}