From 6b42018eb64aeba8be5b8b6857e384d8c167e29c Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 2 May 2017 08:06:12 +0200 Subject: shell: Fix format specifiers --- cpukit/libmisc/shell/print_heapinfo.c | 6 +++--- 1 file 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 -- cgit v1.2.3