ls: widen -s (1k blocks) column from 4 to 6
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 1 Mar 2011 04:37:41 +0000 (05:37 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 1 Mar 2011 04:37:41 +0000 (05:37 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
coreutils/ls.c

index da370c74bacc5e357fe9a0320fa8d12adb61e50d..19c868ca45f8565096429fbc3c12c4d7035ad4d4 100644 (file)
@@ -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)