tar: support -T - and -X -
[oweals/busybox.git] / libbb / human_readable.c
index 50cbe41bbf78f8d340a6596d88422c5edb1fec98..8b22b0cb55c5cc954ecf095ba1a4146548b8fca8 100644 (file)
@@ -53,8 +53,8 @@ const char* FAST_FUNC make_human_readable_str(unsigned long long val,
        u = unit_chars;
 
        if (display_unit) {
-               val += display_unit/2;  /* Deal with rounding */
-               val /= display_unit;    /* Don't combine with the line above! */
+               val += display_unit/2;  /* Deal with rounding */
+               val /= display_unit;    /* Don't combine with the line above! */
                /* will just print it as ulonglong (below) */
        } else {
                while ((val >= 1024)