summaryrefslogtreecommitdiffstats
path: root/testsuites/itrontests/itronmbf01
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-02-06 19:14:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-02-06 19:14:30 +0000
commit8d581840b6232f191503e5e63a5e467bd6ae85b5 (patch)
treee5966626b0db9e4aae584604584dd581e25882fb /testsuites/itrontests/itronmbf01
parent2007-02-06 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-8d581840b6232f191503e5e63a5e467bd6ae85b5.tar.bz2
2007-02-06 Joel Sherrill <joel@OARcorp.com>
* itronmbf01/init.c: Address size_t/uint32_t typing issues in message queue tests.
Diffstat (limited to 'testsuites/itrontests/itronmbf01')
-rw-r--r--testsuites/itrontests/itronmbf01/init.c20
1 files changed, 10 insertions, 10 deletions
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);