From 9cb7a7a339936c91c6eaa7b59b5795d82d337b9d Mon Sep 17 00:00:00 2001 From: "W. Eric Norum" Date: Mon, 17 Dec 2007 18:43:59 +0000 Subject: [PATCH] Use standard types -- new versions of RTEMS will be drop the rtems_xxx types. --- src/libCom/osi/os/RTEMS/osdInterrupt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libCom/osi/os/RTEMS/osdInterrupt.c b/src/libCom/osi/os/RTEMS/osdInterrupt.c index ce63e57c1..7dd99a1c9 100644 --- a/src/libCom/osi/os/RTEMS/osdInterrupt.c +++ b/src/libCom/osi/os/RTEMS/osdInterrupt.c @@ -65,7 +65,7 @@ void InterruptContextMessageDaemon (void *unused) { const char *message; - rtems_unsigned32 size; + uint32_t size; rtems_status_code sc; sc = rtems_message_queue_create (rtems_build_name ('I', 'C', 'M', 'Q'), @@ -90,6 +90,6 @@ InterruptContextMessageDaemon (void *unused) if (size == sizeof message) syslog (LOG_ERR, "%s", message); else - errlogPrintf ("Received %d-byte message from interrupt context", size); + errlogPrintf ("Received %u-byte message from interrupt context", (unsigned int)size); } }