diff options
author | rsc <rsc> | 2006-09-06 17:57:47 +0000 |
---|---|---|
committer | rsc <rsc> | 2006-09-06 17:57:47 +0000 |
commit | 48b824703b35e17965c738743c7394e1fc0017ec (patch) | |
tree | 6ac3358c12018c06bddc9769338bce8061040f43 /sh.c | |
parent | 96d467b3a9027412eed8bf5ec3c4521db44469ef (diff) | |
download | xv6-labs-48b824703b35e17965c738743c7394e1fc0017ec.tar.gz xv6-labs-48b824703b35e17965c738743c7394e1fc0017ec.tar.bz2 xv6-labs-48b824703b35e17965c738743c7394e1fc0017ec.zip |
break single-line if statements
Diffstat (limited to 'sh.c')
-rw-r--r-- | sh.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; } |