From 7e516797f973fdf8535284606af101339f2e6be4 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 30 Jun 2001 18:00:26 +0000 Subject: [PATCH] Pad the human readable output for 'ls -sh' to 6 chars, since we will have numbers printed as XXX.YU, so we need 6 digits not 4. -Erik --- coreutils/ls.c | 2 +- ls.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/coreutils/ls.c b/coreutils/ls.c index e51a3bc0b..bd79cc940 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -610,7 +610,7 @@ static int list_single(struct dnode *dn) break; case LIST_BLOCKS: #ifdef BB_FEATURE_HUMAN_READABLE - fprintf(stdout, "%4s ", make_human_readable_str(dn->dstat.st_blocks>>1, + fprintf(stdout, "%6s ", make_human_readable_str(dn->dstat.st_blocks>>1, KILOBYTE, (ls_disp_hr==TRUE)? 0: KILOBYTE)); #else #if _FILE_OFFSET_BITS == 64 diff --git a/ls.c b/ls.c index e51a3bc0b..bd79cc940 100644 --- a/ls.c +++ b/ls.c @@ -610,7 +610,7 @@ static int list_single(struct dnode *dn) break; case LIST_BLOCKS: #ifdef BB_FEATURE_HUMAN_READABLE - fprintf(stdout, "%4s ", make_human_readable_str(dn->dstat.st_blocks>>1, + fprintf(stdout, "%6s ", make_human_readable_str(dn->dstat.st_blocks>>1, KILOBYTE, (ls_disp_hr==TRUE)? 0: KILOBYTE)); #else #if _FILE_OFFSET_BITS == 64