diff options
author | Denis Vlasenko | 2007-03-24 15:40:16 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-03-24 15:40:16 +0000 |
commit | 219d14d514ca4d31b4319af14e3a64b66fe2c233 (patch) | |
tree | a74e8ce7604ff932a3990de3065c167392e4b082 /libbb/human_readable.c | |
parent | 644849a3aa0c834a942fb7777ec449d8098bcfc9 (diff) | |
download | busybox-219d14d514ca4d31b4319af14e3a64b66fe2c233.zip busybox-219d14d514ca4d31b4319af14e3a64b66fe2c233.tar.gz |
random style fixes (extra spaces deleted)
Diffstat (limited to 'libbb/human_readable.c')
-rw-r--r-- | libbb/human_readable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/human_readable.c b/libbb/human_readable.c index ff1b551..7469e79 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, } #if 0 /* Sample code to omit decimal point and tenths digit. */ - if ( /* no_tenths */ 1 ) { - if ( frac >= 5 ) { + if (/* no_tenths */ 1) { + if (frac >= 5) { ++val; } f = "%llu%*c" /* fmt_no_tenths */ ; |