0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-04-24 18:50:14 +00:00

Ensure stdout is flushed in the progs signal_hook()

This commit is contained in:
Bill Currie 2011-03-20 13:34:28 +09:00
parent a919e5f619
commit 025c39cc02

View file

@ -320,6 +320,7 @@ signal_hook (int sig, void *data)
}
}
PR_DumpState (pr);
fflush (stdout);
return 0;
}