summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2011-03-24 13:32:44 +0200
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2011-03-24 13:32:44 +0200
commit73d42dd57f6a6f246101928d7c7403058a6627a4 (patch)
tree221290674c618d9ea5ac02bcde8cfb880a235196
parent1895b7b9eacd27112fd1fbeb7d10e67ffeae5041 (diff)
fs-tests: perf: fix compilation warning
Fix the following compilation warning: perf.c: In function ‘perf’: perf.c:144: warning: format ‘%lld’ expects type ‘long long int’, but argument 2 has type ‘int64_t’ by adding a (long long int) cast. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
-rw-r--r--tests/fs-tests/simple/perf.c3
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);