aboutsummaryrefslogtreecommitdiff
path: root/shell/lash.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-24 15:40:16 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-24 15:40:16 +0000
commit219d14d514ca4d31b4319af14e3a64b66fe2c233 (patch)
treea74e8ce7604ff932a3990de3065c167392e4b082 /shell/lash.c
parent644849a3aa0c834a942fb7777ec449d8098bcfc9 (diff)
downloadbusybox-219d14d514ca4d31b4319af14e3a64b66fe2c233.tar.gz
random style fixes (extra spaces deleted)
Diffstat (limited to 'shell/lash.c')
-rw-r--r--shell/lash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/lash.c b/shell/lash.c
index 09067fda0..f938a74b9 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -1138,7 +1138,7 @@ static int pseudo_exec(struct child_prog *child)
* if this is one of those cases.
*/
for (x = bltins; x->cmd; x++) {
- if (strcmp(child->argv[0], x->cmd) == 0 ) {
+ if (strcmp(child->argv[0], x->cmd) == 0) {
_exit(x->function(child));
}
}
@@ -1262,7 +1262,7 @@ static int run_command(struct job *newjob, int inbg, int outpipe[2])
}
for (x = bltins; x->cmd; x++) {
- if (strcmp(child->argv[0], x->cmd) == 0 ) {
+ if (strcmp(child->argv[0], x->cmd) == 0) {
int rcode;
int squirrel[] = {-1, -1, -1};
setup_redirects(child, squirrel);