diff options
-rw-r--r-- | console-tools/reset.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/console-tools/reset.c b/console-tools/reset.c index 57cebb4ea..587c0d11a 100644 --- a/console-tools/reset.c +++ b/console-tools/reset.c | |||
@@ -56,6 +56,8 @@ int reset_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | |||
56 | #if ENABLE_STTY | 56 | #if ENABLE_STTY |
57 | return stty_main(2, (char**)args); | 57 | return stty_main(2, (char**)args); |
58 | #else | 58 | #else |
59 | /* Make sure stdout gets drained before we execvp */ | ||
60 | fflush_all(); | ||
59 | execvp("stty", (char**)args); | 61 | execvp("stty", (char**)args); |
60 | #endif | 62 | #endif |
61 | } | 63 | } |