changed signed int to unsigned int to eliminate a warning.

This commit is contained in:
Joel Sherrill
1997-04-07 21:30:58 +00:00
parent bd71da714e
commit 9ffcaa4a8a
3 changed files with 3 additions and 3 deletions

View File

@@ -95,7 +95,7 @@ rtems_monitor_dump_id(rtems_id id)
unsigned32 unsigned32
rtems_monitor_dump_name(rtems_name name) rtems_monitor_dump_name(rtems_name name)
{ {
int i; unsigned32 i;
unsigned32 length = 0; unsigned32 length = 0;
union { union {
unsigned32 ui; unsigned32 ui;

View File

@@ -95,7 +95,7 @@ rtems_monitor_dump_id(rtems_id id)
unsigned32 unsigned32
rtems_monitor_dump_name(rtems_name name) rtems_monitor_dump_name(rtems_name name)
{ {
int i; unsigned32 i;
unsigned32 length = 0; unsigned32 length = 0;
union { union {
unsigned32 ui; unsigned32 ui;

View File

@@ -95,7 +95,7 @@ rtems_monitor_dump_id(rtems_id id)
unsigned32 unsigned32
rtems_monitor_dump_name(rtems_name name) rtems_monitor_dump_name(rtems_name name)
{ {
int i; unsigned32 i;
unsigned32 length = 0; unsigned32 length = 0;
union { union {
unsigned32 ui; unsigned32 ui;