diff options
author | jinwang.an <jinwang.an@samsung.com> | 2020-01-16 10:44:10 +0900 |
---|---|---|
committer | jinwang.an <jinwang.an@samsung.com> | 2020-01-16 10:44:10 +0900 |
commit | 16d1d5eacf5cb3d3e5ba9e7c0d9999a5b65e4f59 (patch) | |
tree | 33b3e0be59cd0849c1d2be90dfcb7e9b1891391b | |
parent | 0963e691140eddffa83561382d1e9c3be80844b6 (diff) | |
download | watch-setting-16d1d5eacf5cb3d3e5ba9e7c0d9999a5b65e4f59.tar.gz watch-setting-16d1d5eacf5cb3d3e5ba9e7c0d9999a5b65e4f59.tar.bz2 watch-setting-16d1d5eacf5cb3d3e5ba9e7c0d9999a5b65e4f59.zip |
Fix warrningsubmit/tizen/20200116.014652
Change-Id: Ie9b87a6732153287fd0020162634e44b9ff8a2a4
Signed-off-by: jinwang.an <jinwang.an@samsung.com>
-rw-r--r-- | src/setting-info.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |