aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-11 17:04:29 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-11 17:04:29 +0000
commit9e22fc4f5053377fa61d7e84480f7f4aa14d4bf5 (patch)
treeb1ffb40817fcb6a50e970ca9ef33624c56bd3a2a /shell
parent9a5db51b503eba9c9b58ceabbf03869930429565 (diff)
downloadbusybox-w32-9e22fc4f5053377fa61d7e84480f7f4aa14d4bf5.tar.gz
busybox-w32-9e22fc4f5053377fa61d7e84480f7f4aa14d4bf5.tar.bz2
busybox-w32-9e22fc4f5053377fa61d7e84480f7f4aa14d4bf5.zip
style fixes, no code changes.
git-svn-id: svn://busybox.net/trunk/busybox@18403 69ca8d6d-28ef-0310-b511-8ec308f3f277
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)
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 */
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)
243 if (child->argv[1] == NULL) 243 if (child->argv[1] == NULL)
244 exit(EXIT_SUCCESS); 244 exit(EXIT_SUCCESS);
245 245
246 exit (atoi(child->argv[1])); 246 exit(atoi(child->argv[1]));
247} 247}
248 248
249/* built-in 'fg' and 'bg' handler */ 249/* built-in 'fg' and 'bg' handler */