shell: mufs: use PRIu32 to print the size for proper portability

This commit is contained in:
S.J.R. van Schaik 2017-06-14 14:14:32 +02:00
parent 316e3a13d2
commit f0de762d61

View file

@ -126,7 +126,7 @@ static void do_mufs_stat(const char *s)
default: return;
}
printf(" file size: %u bytes\n", stat.file_size);
printf(" file size: %" PRIu32 " bytes\n", stat.file_size);
}
static void do_mufs_cat(const char *s)