aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 17:04:29 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 17:04:29 +0000
commit6398cf477d96cea03459835ed7462d2e8d5b2a71 (patch)
treeb1ffb40817fcb6a50e970ca9ef33624c56bd3a2a /shell
parente4f2d064b0fcffc8897089e1c80e6e2d61b6805d (diff)
downloadbusybox-6398cf477d96cea03459835ed7462d2e8d5b2a71.tar.gz
style fixes, no code changes.
Diffstat (limited to 'shell')
-rw-r--r--shell/hush.c2
-rw-r--r--shell/lash.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 3048d695a..331d591c8 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -489,7 +489,7 @@ static int builtin_exit(struct child_prog *child)
{
if (child->argv[1] == NULL)
exit(last_return_code);
- exit (atoi(child->argv[1]));
+ exit(atoi(child->argv[1]));
}
/* built-in 'export VAR=value' handler */
diff --git a/shell/lash.c b/shell/lash.c
index f91bec254..aba9c0a2e 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -243,7 +243,7 @@ static int builtin_exit(struct child_prog *child)
if (child->argv[1] == NULL)
exit(EXIT_SUCCESS);
- exit (atoi(child->argv[1]));
+ exit(atoi(child->argv[1]));
}
/* built-in 'fg' and 'bg' handler */