diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-06-30 18:00:26 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-06-30 18:00:26 +0000 |
commit | 7e516797f973fdf8535284606af101339f2e6be4 (patch) | |
tree | c4df0f6d8bdf512f65492216b41458ed5787afd3 /coreutils/ls.c | |
parent | 8fa1bf7cd6fefc5ac3fb13eb85569d874e84f88e (diff) | |
download | busybox-7e516797f973fdf8535284606af101339f2e6be4.tar.gz |
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
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 2 |
1 files changed, 1 insertions, 1 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 |