diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-11 17:04:29 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-11 17:04:29 +0000 |
commit | 6398cf477d96cea03459835ed7462d2e8d5b2a71 (patch) | |
tree | b1ffb40817fcb6a50e970ca9ef33624c56bd3a2a /shell/hush.c | |
parent | e4f2d064b0fcffc8897089e1c80e6e2d61b6805d (diff) | |
download | busybox-w32-6398cf477d96cea03459835ed7462d2e8d5b2a71.tar.gz busybox-w32-6398cf477d96cea03459835ed7462d2e8d5b2a71.tar.bz2 busybox-w32-6398cf477d96cea03459835ed7462d2e8d5b2a71.zip |
style fixes, no code changes.
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 2 |
1 files changed, 1 insertions, 1 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) | |||
489 | { | 489 | { |
490 | if (child->argv[1] == NULL) | 490 | if (child->argv[1] == NULL) |
491 | exit(last_return_code); | 491 | exit(last_return_code); |
492 | exit (atoi(child->argv[1])); | 492 | exit(atoi(child->argv[1])); |
493 | } | 493 | } |
494 | 494 | ||
495 | /* built-in 'export VAR=value' handler */ | 495 | /* built-in 'export VAR=value' handler */ |