summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-05-02 08:06:12 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-05-02 08:06:12 +0200
commit6b42018eb64aeba8be5b8b6857e384d8c167e29c (patch)
tree7ba8b3cb04a1b68535fcb076a65c0abf27457739
parentbsp/tms570: include package balls and PINMMR registers mapping for TMS5704357... (diff)
downloadrtems-6b42018eb64aeba8be5b8b6857e384d8c167e29c.tar.bz2
shell: Fix format specifiers
-rw-r--r--cpukit/libmisc/shell/print_heapinfo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libmisc/shell/print_heapinfo.c b/cpukit/libmisc/shell/print_heapinfo.c
index f99f0a9aa3..719f7116c3 100644
--- a/cpukit/libmisc/shell/print_heapinfo.c
+++ b/cpukit/libmisc/shell/print_heapinfo.c
@@ -24,9 +24,9 @@ void rtems_shell_print_heap_info(
)
{
printf(
- "Number of %s blocks: %12" PRId32 "\n"
- "Largest %s block: %12" PRId32 "\n"
- "Total bytes %s: %12" PRId32 "\n",
+ "Number of %s blocks: %12" PRIu32 "\n"
+ "Largest %s block: %12" PRIu32 "\n"
+ "Total bytes %s: %12" PRIu32 "\n",
c, h->number,
c, h->largest,
c, h->total