aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/du.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/du.c b/coreutils/du.c
index d5ce46cf2..a0c99040e 100644
--- a/coreutils/du.c
+++ b/coreutils/du.c
@@ -133,7 +133,7 @@ static void print(unsigned long long size, const char *filename)
133 size++; 133 size++;
134 size >>= 1; 134 size >>= 1;
135 } 135 }
136 printf("%llu\t%s\n", size, filename); 136 printf("%"LL_FMT"u\t%s\n", size, filename);
137#endif 137#endif
138} 138}
139 139