1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

shell: flush stdout after printing prompt

This commit is contained in:
Kaspar Schleiser 2015-04-29 20:52:33 +02:00
parent c7c0d4b98b
commit 2d7642b8c1

View File

@ -257,6 +257,7 @@ static inline void print_prompt(shell_t *shell)
{
shell->put_char('>');
shell->put_char(' ');
fflush(stdout);
return;
}