[git commit master 1/1] ls: widen -s (1k blocks) column from 4 to 6
Denys Vlasenko
vda.linux at googlemail.com
Tue Mar 1 04:37:41 UTC 2011
commit: http://git.busybox.net/busybox/commit/?id=3b28dae17dc93584f0e38388d0dbdbd6761d705e
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master
Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
coreutils/ls.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/coreutils/ls.c b/coreutils/ls.c
index da370c7..19c868c 100644
--- a/coreutils/ls.c
+++ b/coreutils/ls.c
@@ -683,8 +683,9 @@ static NOINLINE unsigned list_single(const struct dnode *dn)
if (all_fmt & LIST_INO)
column += printf("%7llu ", (long long) dn->dstat.st_ino);
+//TODO: -h should affect -s too:
if (all_fmt & LIST_BLOCKS)
- column += printf("%4"OFF_FMT"u ", (off_t) (dn->dstat.st_blocks >> 1));
+ column += printf("%6"OFF_FMT"u ", (off_t) (dn->dstat.st_blocks >> 1));
if (all_fmt & LIST_MODEBITS)
column += printf("%-10s ", (char *) bb_mode_string(dn->dstat.st_mode));
if (all_fmt & LIST_NLINKS)
--
1.7.3.4
More information about the busybox-cvs
mailing list