diff options
author | Denis Vlasenko | 2006-10-26 00:37:00 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-26 00:37:00 +0000 |
commit | c6f188def8c5496dbd65c9be6ca3050286db7227 (patch) | |
tree | d8e1e56c728628c15f66cb88a6e54f368c806939 /shell/lash.c | |
parent | e63a0dee9e559110bcaec494ae5e7fc78c4141c7 (diff) | |
download | busybox-c6f188def8c5496dbd65c9be6ca3050286db7227.zip busybox-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.gz |
silly size savings and capitalization fixes
Diffstat (limited to 'shell/lash.c')
-rw-r--r-- | shell/lash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/lash.c b/shell/lash.c index c499612..96c0b30 100644 --- a/shell/lash.c +++ b/shell/lash.c @@ -678,7 +678,7 @@ static int get_command(FILE * source, char *command) if (!fgets(command, BUFSIZ - 2, source)) { if (source == stdin) - printf("\n"); + puts(""); return 1; } |