psxconfig01/init.c: Fix printf() format warnings

This commit is contained in:
Joel Sherrill
2017-08-27 14:11:43 -05:00
parent 8b29f9b9e8
commit d85d2676e1

View File

@@ -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,