- arm : %lu
- aarch64 : %llu
- Fix printing type to prevent build error
Change-Id: I5cd0e72541464b26ca8b70e06f0d4079e9a23b3f
Signed-off-by: Kichan Kwon <k_c.kwon@samsung.com>
ret = stat(path, &statbuf);
ASSERT_RETV(ret == 0, errno, "Failed to get file status (%d)", errno);
- _I("Image size : %lu", statbuf.st_size);
+ _I("Image size : %llu", (unsigned long long)statbuf.st_size);
total_image_size += statbuf.st_size;
image = calloc(1, sizeof(struct image));