commit | 079f8afa0a16112cbaf7012c82b38b7358b82141 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Mon Nov 27 16:49:31 2006 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Mon Nov 27 16:49:31 2006 +0000 |
tree | 0d8cba8e45b1a8b975e0b8c7a8377703ab5547a6 | |
parent | 10d0d4eec7e3a292917f43f72afae20341d9ba11 [diff] [blame] |
style cleanup: return(a) -> return a, part 1
diff --git a/shell/hush.c b/shell/hush.c index 2013a9d..57b4a7a 100644 --- a/shell/hush.c +++ b/shell/hush.c
@@ -1225,7 +1225,7 @@ if (i==fg_pipe->num_progs-1) rcode=WEXITSTATUS(status); (fg_pipe->num_progs)--; - return(rcode); + return rcode; } } } @@ -2768,7 +2768,7 @@ #endif final_return: - return(opt?opt:last_return_code); + return opt ? opt : last_return_code; } static char *insert_var_value(char *inp)