diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:49:31 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:49:31 +0000 |
commit | 079f8afa0a16112cbaf7012c82b38b7358b82141 (patch) | |
tree | 0d8cba8e45b1a8b975e0b8c7a8377703ab5547a6 /coreutils/install.c | |
parent | 10d0d4eec7e3a292917f43f72afae20341d9ba11 (diff) | |
download | busybox-w32-079f8afa0a16112cbaf7012c82b38b7358b82141.tar.gz busybox-w32-079f8afa0a16112cbaf7012c82b38b7358b82141.tar.bz2 busybox-w32-079f8afa0a16112cbaf7012c82b38b7358b82141.zip |
style cleanup: return(a) -> return a, part 1
Diffstat (limited to 'coreutils/install.c')
-rw-r--r-- | coreutils/install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/install.c b/coreutils/install.c index 54adc2b6e..3e003905e 100644 --- a/coreutils/install.c +++ b/coreutils/install.c | |||
@@ -92,7 +92,7 @@ int install_main(int argc, char **argv) | |||
92 | } | 92 | } |
93 | } while (old_argv_ptr); | 93 | } while (old_argv_ptr); |
94 | } | 94 | } |
95 | return(ret); | 95 | return ret; |
96 | } | 96 | } |
97 | 97 | ||
98 | { | 98 | { |
@@ -127,5 +127,5 @@ int install_main(int argc, char **argv) | |||
127 | if(ENABLE_FEATURE_CLEAN_UP && isdir) free(dest); | 127 | if(ENABLE_FEATURE_CLEAN_UP && isdir) free(dest); |
128 | } | 128 | } |
129 | 129 | ||
130 | return(ret); | 130 | return ret; |
131 | } | 131 | } |