diff options
Diffstat (limited to 'shell/lash.c')
-rw-r--r-- | shell/lash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/lash.c b/shell/lash.c index 889fe49d8..4ce6d4235 100644 --- a/shell/lash.c +++ b/shell/lash.c | |||
@@ -319,7 +319,7 @@ static int builtin_help(struct child_prog ATTRIBUTE_UNUSED *dummy) | |||
319 | continue; | 319 | continue; |
320 | printf("%s\t%s\n", x->cmd, x->descr); | 320 | printf("%s\t%s\n", x->cmd, x->descr); |
321 | } | 321 | } |
322 | putchar('\n'); | 322 | bb_putchar('\n'); |
323 | return EXIT_SUCCESS; | 323 | return EXIT_SUCCESS; |
324 | } | 324 | } |
325 | 325 | ||
@@ -677,7 +677,7 @@ static int get_command_bufsiz(FILE * source, char *command) | |||
677 | 677 | ||
678 | if (!fgets(command, BUFSIZ - 2, source)) { | 678 | if (!fgets(command, BUFSIZ - 2, source)) { |
679 | if (source == stdin) | 679 | if (source == stdin) |
680 | puts(""); | 680 | bb_putchar('\n'); |
681 | return 1; | 681 | return 1; |
682 | } | 682 | } |
683 | 683 | ||