diff --git a/src/exec.c b/src/exec.c index ab7a68b..452a30f 100644 --- a/src/exec.c +++ b/src/exec.c @@ -399,7 +399,7 @@ static int hyper_install_process_stdio(struct hyper_exec *e, struct stdio_config io->stderrfd = ptyslave; } - fflush(stdout); + fflush(NULL); if (dup2(io->stdinfd, STDIN_FILENO) < 0) { perror("dup tty device to stdin failed"); @@ -555,7 +555,7 @@ static void hyper_exec_process(struct hyper_exec *exec, struct stdio_config *io) } exit: - fflush(stdout); + fflush(NULL); _exit(125); }