diff options
Diffstat (limited to 'tests/fs-tests/simple')
-rw-r--r-- | tests/fs-tests/simple/perf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/fs-tests/simple/perf.c b/tests/fs-tests/simple/perf.c index 43d708d..b98b98b 100644 --- a/tests/fs-tests/simple/perf.c +++ b/tests/fs-tests/simple/perf.c @@ -141,7 +141,8 @@ void perf(void) /* Display timings */ printf("File system read and write speed\n"); printf("================================\n"); - printf("Specfied file size: %lld\n", tests_size_parameter); + printf("Specfied file size: %lld\n", + (unsigned long long)tests_size_parameter); printf("Actual file size: %zu\n", actual_size); printf("Write time (us): %lld\n", write_time); printf("Unmount time (us): %lld\n", unmount_time); |