summaryrefslogtreecommitdiff
path: root/tests/fs-tests/simple/test_1.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fs-tests/simple/test_1.c')
-rw-r--r--tests/fs-tests/simple/test_1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fs-tests/simple/test_1.c b/tests/fs-tests/simple/test_1.c
index 69eafe4..79fd0b9 100644
--- a/tests/fs-tests/simple/test_1.c
+++ b/tests/fs-tests/simple/test_1.c
@@ -64,7 +64,7 @@ void test_1(void)
/* Create files to file up the file system */
for (block = 1000000, i = 1; ; block /= 10) {
while (i != 0) {
- sprintf(name, "fill_up_%llu", i);
+ sprintf(name, "fill_up_%llu", (unsigned long long)i);
actual_size = tests_create_file(name, block);
if (actual_size != 0)
++i;
@@ -85,7 +85,7 @@ void test_1(void)
i -= 1;
CHECK(tests_count_files_in_dir(".") == i);
for (; i > 0; --i) {
- sprintf(name, "fill_up_%llu", i);
+ sprintf(name, "fill_up_%llu", (unsigned long long)i);
tests_check_filled_file(name);
tests_delete_file(name);
}