Fix format string 67/239167/1 submit/tizen/20200722.081959
authorKichan Kwon <k_c.kwon@samsung.com>
Wed, 22 Jul 2020 08:17:11 +0000 (17:17 +0900)
committerKichan Kwon <k_c.kwon@samsung.com>
Wed, 22 Jul 2020 08:17:11 +0000 (17:17 +0900)
Change-Id: I93c2ef92b2ce9295a73a1cbf13d65d9d65ef529d
Signed-off-by: Kichan Kwon <k_c.kwon@samsung.com>
src/system-recovery.c

index b1c6a25..f4265cd 100644 (file)
@@ -166,7 +166,7 @@ static int read_config_file(struct image **image_list)
                ret = stat(path, &statbuf);
                ASSERT_RETV(ret == 0, errno, "Failed to get file status (%d)", errno);
 
-               _I("Image size : %llu", statbuf.st_size);
+               _I("Image size : %lu", statbuf.st_size);
                total_image_size += statbuf.st_size;
 
                image = calloc(1, sizeof(struct image));