diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-26 14:32:57 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-26 14:32:57 +0000 |
commit | f5d8c90d73777d912ddffea9dd7c537c3a1a43a5 (patch) | |
tree | a358be6a258f4c7c8905f1809737e74413df26c6 /shell | |
parent | 2649f215aecf923713d2f9a379cf651437ddf499 (diff) |
style fixes, no code changes
Diffstat (limited to 'shell')
-rw-r--r-- | shell/bbsh.c | 2 |
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) if (!pid) { run_applet_and_exit(cmd->argv[0],cmd->argc,cmd->argv); execvp(cmd->argv[0],cmd->argv); - printf("No %s",cmd->argv[0]); + printf("No %s", cmd->argv[0]); exit(EXIT_FAILURE); } else waitpid(pid, &status, 0); } |