aboutsummaryrefslogtreecommitdiff
path: root/shell/bbsh.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-26 14:32:57 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-26 14:32:57 +0000
commitf5d8c90d73777d912ddffea9dd7c537c3a1a43a5 (patch)
treea358be6a258f4c7c8905f1809737e74413df26c6 /shell/bbsh.c
parent2649f215aecf923713d2f9a379cf651437ddf499 (diff)
downloadbusybox-w32-f5d8c90d73777d912ddffea9dd7c537c3a1a43a5.tar.gz
busybox-w32-f5d8c90d73777d912ddffea9dd7c537c3a1a43a5.tar.bz2
busybox-w32-f5d8c90d73777d912ddffea9dd7c537c3a1a43a5.zip
style fixes, no code changes
Diffstat (limited to 'shell/bbsh.c')
-rw-r--r--shell/bbsh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/bbsh.c b/shell/bbsh.c
index 5386bb097..3be64eec7 100644
--- a/shell/bbsh.c
+++ b/shell/bbsh.c
@@ -167,7 +167,7 @@ static int run_pipeline(struct pipeline *line)
167 if (!pid) { 167 if (!pid) {
168 run_applet_and_exit(cmd->argv[0],cmd->argc,cmd->argv); 168 run_applet_and_exit(cmd->argv[0],cmd->argc,cmd->argv);
169 execvp(cmd->argv[0],cmd->argv); 169 execvp(cmd->argv[0],cmd->argv);
170 printf("No %s",cmd->argv[0]); 170 printf("No %s", cmd->argv[0]);
171 exit(EXIT_FAILURE); 171 exit(EXIT_FAILURE);
172 } else waitpid(pid, &status, 0); 172 } else waitpid(pid, &status, 0);
173 } 173 }