From 16d1d5eacf5cb3d3e5ba9e7c0d9999a5b65e4f59 Mon Sep 17 00:00:00 2001 From: "jinwang.an" Date: Thu, 16 Jan 2020 10:44:10 +0900 Subject: Fix warrning Change-Id: Ie9b87a6732153287fd0020162634e44b9ff8a2a4 Signed-off-by: jinwang.an --- src/setting-info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setting-info.c b/src/setting-info.c index 18fc38f..1c1d2cd 100644 --- a/src/setting-info.c +++ b/src/setting-info.c @@ -105,7 +105,7 @@ void storageUg_get_internal_storage_status(double *total, double *avail) ret = storage_get_internal_memory_size(&s); if (0 == ret) { - DBG("Total = %lu, Available = %lu", (s.f_frsize * s.f_blocks), + DBG("Total = %llu, Available = %llu", (s.f_frsize * s.f_blocks), (s.f_bsize * s.f_bavail)); tmp_total = (double)s.f_frsize * s.f_blocks; #if 0 -- cgit v1.2.3