summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2017-08-27 14:11:43 -0500
committerJoel Sherrill <joel@rtems.org>2017-08-27 14:11:43 -0500
commitd85d2676e1e49166835dcae0b45cf5bc82faa036 (patch)
tree991a8b6e5e4d2b22dfb39959b8d8a59629860b61 /testsuites
parentsp25/task1.c: Fix printf() format warnings (diff)
downloadrtems-d85d2676e1e49166835dcae0b45cf5bc82faa036.tar.bz2
psxconfig01/init.c: Fix printf() format warnings
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/psxtests/psxconfig01/init.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/testsuites/psxtests/psxconfig01/init.c b/testsuites/psxtests/psxconfig01/init.c
index 433e50ff19..dd741c11cb 100644
--- a/testsuites/psxtests/psxconfig01/init.c
+++ b/testsuites/psxtests/psxconfig01/init.c
@@ -225,12 +225,12 @@ static void print_info(void)
rtems_test_assert(ok);
printf(
- "used blocks = %" PRIu32 ", "
- "largest used block = %" PRIu32 ", "
- "used space = %" PRIu32 "\n"
- "free blocks = %" PRIu32 ", "
- "largest free block = %" PRIu32 ", "
- "free space = %" PRIu32 "\n",
+ "used blocks = %" PRIuPTR ", "
+ "largest used block = %" PRIuPTR ", "
+ "used space = %" PRIuPTR "\n"
+ "free blocks = %" PRIuPTR ", "
+ "largest free block = %" PRIuPTR ", "
+ "free space = %" PRIuPTR "\n",
info.Used.number,
info.Used.largest,
info.Used.total,