2007-02-06 Joel Sherrill <joel@OARcorp.com>

* itronmbf01/init.c: Address size_t/uint32_t typing issues in message
	queue tests.
This commit is contained in:
Joel Sherrill
2007-02-06 19:14:48 +00:00
parent 1c43ddfa1d
commit 822c35d907
2 changed files with 15 additions and 10 deletions

View File

@@ -1,3 +1,8 @@
2007-02-06 Joel Sherrill <joel@OARcorp.com>
* itronmbf01/init.c: Address size_t/uint32_t typing issues in message
queue tests.
2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: New BUG-REPORT address.

View File

@@ -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
@@ -252,7 +252,7 @@ void TestRcv()
{
ER status;
char buffer[200];
int s;
uint32_t s;
puts( "Init - rcv_mbf - bad id (less than -4) - E_OACV" );
status = rcv_mbf(buffer, &s, -5);
@@ -289,7 +289,7 @@ void TestPrcv()
{
ER status;
char buffer[200];
int s;
uint32_t s;
puts( "Init - prcv_mbf - bad id (less than -4) - E_OACV" );
status = prcv_mbf(buffer, &s, -5);
@@ -325,7 +325,7 @@ void TestTrcv()
{
ER status;
char buffer[200];
int s;
uint32_t s;
puts( "Init - trcv_mbf - bad id (less than -4) - E_OACV" );
status = trcv_mbf(buffer, &s, -5, 5000);