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

tags/0.1.0
S.J.R. van Schaik 8 years ago
parent 316e3a13d2
commit f0de762d61
  1. 2
      source/shell/mufs.c

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

Loading…
Cancel
Save