diff options
Diffstat (limited to 'ls.c')
-rw-r--r-- | ls.c | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -648,15 +648,18 @@ static int list_single(struct dnode *dn) | |||
648 | printf("%4d, %3d ", (int)MAJOR(dn->dstat.st_rdev), (int)MINOR(dn->dstat.st_rdev)); | 648 | printf("%4d, %3d ", (int)MAJOR(dn->dstat.st_rdev), (int)MINOR(dn->dstat.st_rdev)); |
649 | } else { | 649 | } else { |
650 | #ifdef BB_FEATURE_HUMAN_READABLE | 650 | #ifdef BB_FEATURE_HUMAN_READABLE |
651 | fprintf(stdout, "%9s ", make_human_readable_str(dn->dstat.st_size>>10, | 651 | if (ls_disp_hr==TRUE) { |
652 | (ls_disp_hr==TRUE)? 0: 1)); | 652 | fprintf(stdout, "%9s ", make_human_readable_str( |
653 | #else | 653 | dn->dstat.st_size>>10, 0)); |
654 | } else | ||
655 | #endif | ||
656 | { | ||
654 | #if _FILE_OFFSET_BITS == 64 | 657 | #if _FILE_OFFSET_BITS == 64 |
655 | printf("%9lld ", dn->dstat.st_size); | 658 | printf("%9lld ", dn->dstat.st_size); |
656 | #else | 659 | #else |
657 | printf("%9ld ", dn->dstat.st_size); | 660 | printf("%9ld ", dn->dstat.st_size); |
658 | #endif | ||
659 | #endif | 661 | #endif |
662 | } | ||
660 | } | 663 | } |
661 | column += 10; | 664 | column += 10; |
662 | break; | 665 | break; |