commit | c66ebe4200af584b9101bcadc4a11509db8318a1 | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Wed Mar 10 09:58:51 2004 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Wed Mar 10 09:58:51 2004 +0000 |
tree | 8fe66fd701ef921e9f2411c42645288d48585fa6 | |
parent | 44c0e17dbe06e551f73141f56d75aa79129f1aea [diff] [blame] |
When displaying the size in 1kB blocks round up if an odd number of blocks
diff --git a/coreutils/du.c b/coreutils/du.c index 7984d65..df75a69 100644 --- a/coreutils/du.c +++ b/coreutils/du.c
@@ -77,7 +77,11 @@ 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 }