From: Eric Andersen Date: Tue, 22 Oct 2002 19:15:43 +0000 (-0000) Subject: I committed the fflush in the wrong spot. I should go to bed X-Git-Tag: 0_60_5~10 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f02c26f1ef4777d2f0490d241bb4f465c2bd97a6;p=oweals%2Fbusybox.git I committed the fflush in the wrong spot. I should go to bed earlier so I don't screw up such easy stuff. -Erik --- diff --git a/init/init.c b/init/init.c index 9a4c9669c..79ab78fc2 100644 --- a/init/init.c +++ b/init/init.c @@ -627,8 +627,8 @@ static pid_t run(struct init_action *a) messageND(LOG, "Waiting for enter to start '%s' (pid %d, terminal %s)\n", cmdpath, getpid(), a->terminal); - write(fileno(stdout), press_enter, sizeof(press_enter) - 1); fflush(stdout); + write(fileno(stdout), press_enter, sizeof(press_enter) - 1); getc(stdin); }