]> www.infradead.org Git - mtd-utils.git/commitdiff
fs-tests: test_1: fix compilation warnings
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Thu, 24 Mar 2011 08:19:21 +0000 (10:19 +0200)
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Thu, 24 Mar 2011 09:10:47 +0000 (11:10 +0200)
Fix the following compilation warnings:
test_1.c: In function ‘test_1’:
test_1.c:67:4: warning: format ‘%llu’ expects type ‘long long unsigned int’, but argument 3 has type ‘uint64_t’
test_1.c:88:3: warning: format ‘%llu’ expects type ‘long long unsigned int’, but argument 3 has type ‘uint64_t’

The fix is to cast the argument with (unsigned long long).

Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
tests/fs-tests/simple/test_1.c

index 69eafe4fabc83c2565da95f639479e306a102d05..79fd0b9735ab30d113e53513721326a7dc54569e 100644 (file)
@@ -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);
        }