style cleanup: return(a) -> return a, part 1

This commit is contained in:
Denis Vlasenko
2006-11-27 16:49:31 +00:00
parent 10d0d4eec7
commit 079f8afa0a
36 changed files with 214 additions and 219 deletions

View File

@ -1225,7 +1225,7 @@ static int checkjobs(struct pipe* fg_pipe)
if (i==fg_pipe->num_progs-1)
rcode=WEXITSTATUS(status);
(fg_pipe->num_progs)--;
return(rcode);
return rcode;
}
}
}
@ -2768,7 +2768,7 @@ int hush_main(int argc, char **argv)
#endif
final_return:
return(opt?opt:last_return_code);
return opt ? opt : last_return_code;
}
static char *insert_var_value(char *inp)