summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/trcv_mbx.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/trcv_mbx.c')
-rw-r--r--cpukit/itron/src/trcv_mbx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/itron/src/trcv_mbx.c b/cpukit/itron/src/trcv_mbx.c
index 8b8dec0168..156b3b004d 100644
--- a/cpukit/itron/src/trcv_mbx.c
+++ b/cpukit/itron/src/trcv_mbx.c
@@ -32,18 +32,18 @@ ER trcv_msg(
{
register ITRON_Mailbox_Control *the_mailbox;
Watchdog_Interval interval;
- boolean wait;
+ bool wait;
Objects_Locations location;
- uint32_t size;
+ size_t size;
if (!ppk_msg)
return E_PAR;
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);
}