From 219d14d514ca4d31b4319af14e3a64b66fe2c233 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 24 Mar 2007 15:40:16 +0000 Subject: random style fixes (extra spaces deleted) --- libbb/bb_pwd.c | 2 +- libbb/human_readable.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'libbb') diff --git a/libbb/bb_pwd.c b/libbb/bb_pwd.c index 223a6b44c..3af1994d5 100644 --- a/libbb/bb_pwd.c +++ b/libbb/bb_pwd.c @@ -28,7 +28,7 @@ /* internal function for bb_getpwuid and bb_getgrgid */ static char* bb_getug(char *buffer, char *idname, long id, int bufsize, char prefix) { - if (bufsize > 0 ) { + if (bufsize > 0) { assert(buffer != NULL); if (idname) { return safe_strncpy(buffer, idname, bufsize); 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, } #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 */ ; -- cgit v1.2.3