From: Eric Andersen Date: Sat, 30 Jun 2001 18:00:26 +0000 (-0000) Subject: Pad the human readable output for 'ls -sh' to 6 chars, since we will X-Git-Tag: 0_52~37 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7e516797f973fdf8535284606af101339f2e6be4;p=oweals%2Fbusybox.git 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 --- 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