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

This commit is contained in:
Denis Vlasenko
2006-11-27 16:49:55 +00:00
parent 079f8afa0a
commit d9e15f2068
28 changed files with 273 additions and 282 deletions

View File

@@ -507,7 +507,7 @@ static int builtin_export(struct child_prog *child)
char *name = child->argv[1];
if (name == NULL) {
return (builtin_env(child));
return builtin_env(child);
}
name = strdup(name);
@@ -730,7 +730,7 @@ static int builtin_source(struct child_prog *child)
status = parse_file_outer(input);
mark_closed(fileno(input));
fclose(input);
return (status);
return status;
}
static int builtin_umask(struct child_prog *child)