From 8d581840b6232f191503e5e63a5e467bd6ae85b5 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 6 Feb 2007 19:14:30 +0000 Subject: 2007-02-06 Joel Sherrill * itronmbf01/init.c: Address size_t/uint32_t typing issues in message queue tests. --- testsuites/itrontests/ChangeLog | 5 +++++ testsuites/itrontests/itronmbf01/init.c | 20 ++++++++++---------- 2 files changed, 15 insertions(+), 10 deletions(-) (limited to 'testsuites/itrontests') diff --git a/testsuites/itrontests/ChangeLog b/testsuites/itrontests/ChangeLog index 9b9f898e9a..aebe535066 100644 --- a/testsuites/itrontests/ChangeLog +++ b/testsuites/itrontests/ChangeLog @@ -1,3 +1,8 @@ +2007-02-06 Joel Sherrill + + * itronmbf01/init.c: Address size_t/uint32_t typing issues in message + queue tests. + 2006-12-02 Ralf Corsépius * configure.ac: New BUG-REPORT address. diff --git a/testsuites/itrontests/itronmbf01/init.c b/testsuites/itrontests/itronmbf01/init.c index 68d3582930..d9adcc4e21 100644 --- a/testsuites/itrontests/itronmbf01/init.c +++ b/testsuites/itrontests/itronmbf01/init.c @@ -10,7 +10,7 @@ * * Output parameters: NONE * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2007. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -250,9 +250,9 @@ void TestRef() void TestRcv() { - ER status; - char buffer[200]; - int s; + ER status; + char buffer[200]; + uint32_t s; puts( "Init - rcv_mbf - bad id (less than -4) - E_OACV" ); status = rcv_mbf(buffer, &s, -5); @@ -287,9 +287,9 @@ void TestRcv() void TestPrcv() { - ER status; - char buffer[200]; - int s; + ER status; + char buffer[200]; + uint32_t s; puts( "Init - prcv_mbf - bad id (less than -4) - E_OACV" ); status = prcv_mbf(buffer, &s, -5); @@ -323,9 +323,9 @@ void TestPrcv() void TestTrcv() { - ER status; - char buffer[200]; - int s; + ER status; + char buffer[200]; + uint32_t s; puts( "Init - trcv_mbf - bad id (less than -4) - E_OACV" ); status = trcv_mbf(buffer, &s, -5, 5000); -- cgit v1.2.3