diff options
Diffstat (limited to 'usr.sbin/init/mshell.c')
-rw-r--r-- | usr.sbin/init/mshell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/init/mshell.c b/usr.sbin/init/mshell.c index a361b27..a1c2c3b 100644 --- a/usr.sbin/init/mshell.c +++ b/usr.sbin/init/mshell.c @@ -82,7 +82,7 @@ print_file(const char *path) if (len > 0) { buf[len] = '\0'; - printf("%s\n", buf); + printf("%s", buf); } close(fd); |