summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/monitor/mon-symbols.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/monitor/mon-symbols.c')
-rw-r--r--cpukit/libmisc/monitor/mon-symbols.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/cpukit/libmisc/monitor/mon-symbols.c b/cpukit/libmisc/monitor/mon-symbols.c
index ac98523704..7ecae3b0e1 100644
--- a/cpukit/libmisc/monitor/mon-symbols.c
+++ b/cpukit/libmisc/monitor/mon-symbols.c
@@ -21,6 +21,7 @@
#include <rtems.h>
#include <stdio.h>
#include <stdlib.h>
+#include <inttypes.h>
#include <rtems/monitor.h>
#include "symbols.h"
@@ -400,15 +401,16 @@ rtems_monitor_symbol_dump(
(int) sizeof(canonical_symbol->name),
canonical_symbol->name);
else
- length += fprintf(stdout,"<%.*s+0x%x>",
+ length += fprintf(stdout,"<%.*s+0x%" PRIx32 ">",
(int) sizeof(canonical_symbol->name),
canonical_symbol->name,
canonical_symbol->offset);
if (verbose)
- length += fprintf(stdout," [0x%x]", canonical_symbol->value);
+ length += fprintf(stdout,
+ " [0x%" PRIx32 "]", canonical_symbol->value);
}
else
- length += fprintf(stdout,"[0x%x]", canonical_symbol->value);
+ length += fprintf(stdout,"[0x%" PRIx32 "]", canonical_symbol->value);
return length;
}