diff options
author | Denis Vlasenko | 2006-11-27 16:49:55 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-27 16:49:55 +0000 |
commit | d9e15f206840219bb0f39c912a42fdcf8cbcaed6 (patch) | |
tree | ffdef7f5ab4a33038d0a62c9355b48f362aa463e /e2fsprogs/tune2fs.c | |
parent | 079f8afa0a16112cbaf7012c82b38b7358b82141 (diff) | |
download | busybox-d9e15f206840219bb0f39c912a42fdcf8cbcaed6.zip busybox-d9e15f206840219bb0f39c912a42fdcf8cbcaed6.tar.gz |
style cleanup: return(a) -> return a, part 2
Diffstat (limited to 'e2fsprogs/tune2fs.c')
-rw-r--r-- | e2fsprogs/tune2fs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e2fsprogs/tune2fs.c b/e2fsprogs/tune2fs.c index c8dfc69..a2ca1ba 100644 --- a/e2fsprogs/tune2fs.c +++ b/e2fsprogs/tune2fs.c @@ -380,7 +380,7 @@ static time_t parse_time(char *str) struct tm ts; if (strcmp(str, "now") == 0) { - return (time(0)); + return time(0); } memset(&ts, 0, sizeof(ts)); #ifdef HAVE_STRPTIME @@ -398,7 +398,7 @@ static time_t parse_time(char *str) if (ts.tm_mday == 0) { bb_error_msg_and_die("Cannot parse date/time specifier: %s", str); } - return (mktime(&ts)); + return mktime(&ts); } static void parse_tune2fs_options(int argc, char **argv) |