summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libmisc/monitor/mon-symbols.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-10-21 18:39:49 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-10-21 18:39:49 +0000
commita18ccfe0a72fcfb634314cc1db31d84a824934ec (patch)
tree0f6e2a1f88060d2789d25420d6cc2d425b62737b /c/src/lib/libmisc/monitor/mon-symbols.c
parentFixed endian problem in printing object names. (diff)
downloadrtems-a18ccfe0a72fcfb634314cc1db31d84a824934ec.tar.bz2
Fixed a number of warnings regarding comparisons between signed and
unsigned numbers.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libmisc/monitor/mon-symbols.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/lib/libmisc/monitor/mon-symbols.c b/c/src/lib/libmisc/monitor/mon-symbols.c
index 401ad69d9c..123b1247db 100644
--- a/c/src/lib/libmisc/monitor/mon-symbols.c
+++ b/c/src/lib/libmisc/monitor/mon-symbols.c
@@ -231,7 +231,7 @@ rtems_symbol_value_lookup_exact(
rtems_unsigned32 value
)
{
- int s;
+ rtems_unsigned32 s;
rtems_symbol_t *sp;
if (table == 0)
@@ -271,7 +271,7 @@ rtems_symbol_name_lookup(
char *name
)
{
- int s;
+ rtems_unsigned32 s;
rtems_symbol_t *sp;
if (table == 0)
@@ -298,7 +298,7 @@ rtems_monitor_symbol_next(
)
{
rtems_symbol_table_t *table;
- int n = rtems_get_index(*next_id);
+ rtems_unsigned32 n = rtems_get_index(*next_id);
table = *(rtems_symbol_table_t **) object_info;
if (table == 0)
@@ -415,7 +415,7 @@ rtems_monitor_symbol_dump_all(
boolean verbose
)
{
- int s;
+ rtems_unsigned32 s;
rtems_symbol_t *sp;
if (table == 0)