summaryrefslogtreecommitdiff
path: root/sh.c
diff options
context:
space:
mode:
Diffstat (limited to 'sh.c')
-rw-r--r--sh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sh.c b/sh.c
index f4975e5..a439214 100644
--- a/sh.c
+++ b/sh.c
@@ -149,7 +149,8 @@ runcmd(void)
}
if(strcmp(cmdlist[c].argv[0], "/cd") == 0) {
- if(debug) printf (2, "/cd %s is build in\n", cmdlist[c].argv[1]);
+ if(debug)
+ printf (2, "/cd %s is build in\n", cmdlist[c].argv[1]);
chdir(cmdlist[c].argv[1]);
return;
}