From 406e86fdd59946641737ef9d4df3bfd46c6e23c6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 25 Apr 2013 20:10:57 -0400 Subject: [PATCH] readahead: fix format string issue (struct stat).st is off_t, which usually is a long, or a long long. There's no good format string modifier for it, so use a cast. --- src/readahead/readahead-analyze.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/readahead/readahead-analyze.c b/src/readahead/readahead-analyze.c index f409b2f7a..76db3cb7e 100644 --- a/src/readahead/readahead-analyze.c +++ b/src/readahead/readahead-analyze.c @@ -105,7 +105,7 @@ int main_analyze(const char *pack_path) { } if (stat(path, &st) == 0) { - size_t size; + off_t size; if (sections == 0) size = st.st_size; @@ -114,11 +114,11 @@ int main_analyze(const char *pack_path) { tsize += size; - printf(" %4zd%% (%2d) %12zd: %s\n", - sections && st.st_size ? size * 100 / st.st_size : 100, - sections ? sections : 1, - size, - path); + printf(" %4jd%% (%2d) %12jd: %s\n", + (intmax_t) (sections && st.st_size ? size * 100 / st.st_size : 100), + sections ? sections : 1, + (intmax_t) size, + path); } else { printf(" %4dp (%2d) %12s: %s (MISSING)\n", sections ? pages : -1, -- 2.30.2