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-c66ebe4200af584b9101bcadc4a11509db8318a1.tar.gz |
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) bb_printf("%s\t%s\n", make_human_readable_str(size, 512, disp_hr), filename); #else - bb_printf("%ld\t%s\n", size >> disp_k, filename); + if (disp_k) { + size++; + size >>= 1; + } + bb_printf("%ld\t%s\n", size, filename); #endif } |