aboutsummaryrefslogtreecommitdiff
path: root/libbb/human_readable.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-24 15:40:16 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-24 15:40:16 +0000
commit219d14d514ca4d31b4319af14e3a64b66fe2c233 (patch)
treea74e8ce7604ff932a3990de3065c167392e4b082 /libbb/human_readable.c
parent644849a3aa0c834a942fb7777ec449d8098bcfc9 (diff)
downloadbusybox-w32-219d14d514ca4d31b4319af14e3a64b66fe2c233.tar.gz
busybox-w32-219d14d514ca4d31b4319af14e3a64b66fe2c233.tar.bz2
busybox-w32-219d14d514ca4d31b4319af14e3a64b66fe2c233.zip
random style fixes (extra spaces deleted)
Diffstat (limited to 'libbb/human_readable.c')
-rw-r--r--libbb/human_readable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/human_readable.c b/libbb/human_readable.c
index ff1b55141..7469e7999 100644
--- a/libbb/human_readable.c
+++ b/libbb/human_readable.c
@@ -72,8 +72,8 @@ const char *make_human_readable_str(unsigned long long size,
72 } 72 }
73#if 0 73#if 0
74 /* Sample code to omit decimal point and tenths digit. */ 74 /* Sample code to omit decimal point and tenths digit. */
75 if ( /* no_tenths */ 1 ) { 75 if (/* no_tenths */ 1) {
76 if ( frac >= 5 ) { 76 if (frac >= 5) {
77 ++val; 77 ++val;
78 } 78 }
79 f = "%llu%*c" /* fmt_no_tenths */ ; 79 f = "%llu%*c" /* fmt_no_tenths */ ;