chiark / gitweb /
readahead: fix format string issue
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 26 Apr 2013 00:10:57 +0000 (20:10 -0400)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 26 Apr 2013 01:50:48 +0000 (21:50 -0400)
(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

index f409b2f7ac4f6b1b7325a307ee311a65e1a4e462..76db3cb7e4b8dc0be437e291d9bf8e3d0c0797cb 100644 (file)
@@ -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,