diff options
Diffstat (limited to '')
-rw-r--r-- | coreutils/du.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/du.c b/coreutils/du.c index 4652b6300..338998fc9 100644 --- a/coreutils/du.c +++ b/coreutils/du.c | |||
@@ -137,7 +137,7 @@ static void print(unsigned long long size, const char *filename) | |||
137 | size >>= 10; | 137 | size >>= 10; |
138 | } | 138 | } |
139 | } | 139 | } |
140 | printf("%llu\t%s\n", size, filename); | 140 | printf("%"LL_FMT"u\t%s\n", size, filename); |
141 | #endif | 141 | #endif |
142 | } | 142 | } |
143 | 143 | ||