diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2004-03-10 09:58:51 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2004-03-10 09:58:51 +0000 |
commit | c66ebe4200af584b9101bcadc4a11509db8318a1 (patch) | |
tree | 8fe66fd701ef921e9f2411c42645288d48585fa6 | |
parent | 44c0e17dbe06e551f73141f56d75aa79129f1aea (diff) | |
download | busybox-w32-c66ebe4200af584b9101bcadc4a11509db8318a1.tar.gz busybox-w32-c66ebe4200af584b9101bcadc4a11509db8318a1.tar.bz2 busybox-w32-c66ebe4200af584b9101bcadc4a11509db8318a1.zip |
When displaying the size in 1kB blocks round up if an odd number of
blocks
-rw-r--r-- | coreutils/du.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/coreutils/du.c b/coreutils/du.c index 7984d657a..df75a6953 100644 --- a/coreutils/du.c +++ b/coreutils/du.c | |||
@@ -77,7 +77,11 @@ static void print(long size, char *filename) | |||
77 | bb_printf("%s\t%s\n", make_human_readable_str(size, 512, disp_hr), | 77 | bb_printf("%s\t%s\n", make_human_readable_str(size, 512, disp_hr), |
78 | filename); | 78 | filename); |
79 | #else | 79 | #else |
80 | bb_printf("%ld\t%s\n", size >> disp_k, filename); | 80 | if (disp_k) { |
81 | size++; | ||
82 | size >>= 1; | ||
83 | } | ||
84 | bb_printf("%ld\t%s\n", size, filename); | ||
81 | #endif | 85 | #endif |
82 | } | 86 | } |
83 | 87 | ||