summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/trcv_mbf.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/trcv_mbf.c')
-rw-r--r--cpukit/itron/src/trcv_mbf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/itron/src/trcv_mbf.c b/cpukit/itron/src/trcv_mbf.c
index ef3e5372d9..1aee879682 100644
--- a/cpukit/itron/src/trcv_mbf.c
+++ b/cpukit/itron/src/trcv_mbf.c
@@ -34,15 +34,15 @@ ER trcv_mbf(
ITRON_Message_buffer_Control *the_message_buffer;
Objects_Locations location;
CORE_message_queue_Status status;
- boolean wait;
+ bool wait;
Watchdog_Interval interval;
size_t msgsz;
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);
}