diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-27 16:49:55 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-27 16:49:55 +0000 |
commit | db172fe425634b7d784ae1d5af6d88b96b4e747e (patch) | |
tree | ffdef7f5ab4a33038d0a62c9355b48f362aa463e /shell/hush.c | |
parent | bb89b301143fe9deb962bb2d48264b27a945fcf4 (diff) | |
download | busybox-w32-db172fe425634b7d784ae1d5af6d88b96b4e747e.tar.gz busybox-w32-db172fe425634b7d784ae1d5af6d88b96b4e747e.tar.bz2 busybox-w32-db172fe425634b7d784ae1d5af6d88b96b4e747e.zip |
style cleanup: return(a) -> return a, part 2
git-svn-id: svn://busybox.net/trunk/busybox@16691 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c index 57b4a7ac3..a6e029e4e 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -507,7 +507,7 @@ static int builtin_export(struct child_prog *child) | |||
507 | char *name = child->argv[1]; | 507 | char *name = child->argv[1]; |
508 | 508 | ||
509 | if (name == NULL) { | 509 | if (name == NULL) { |
510 | return (builtin_env(child)); | 510 | return builtin_env(child); |
511 | } | 511 | } |
512 | 512 | ||
513 | name = strdup(name); | 513 | name = strdup(name); |
@@ -730,7 +730,7 @@ static int builtin_source(struct child_prog *child) | |||
730 | status = parse_file_outer(input); | 730 | status = parse_file_outer(input); |
731 | mark_closed(fileno(input)); | 731 | mark_closed(fileno(input)); |
732 | fclose(input); | 732 | fclose(input); |
733 | return (status); | 733 | return status; |
734 | } | 734 | } |
735 | 735 | ||
736 | static int builtin_umask(struct child_prog *child) | 736 | static int builtin_umask(struct child_prog *child) |