mirror of
https://github.com/gflags/gflags.git
synced 2025-04-06 14:05:03 +00:00
reports that the error isn't always getting flushed on cygwin. So do that explicitly. R=desovski DELTA=1 (1 added, 0 deleted, 0 changed) Revision created by MOE tool push_codebase. MOE_MIGRATION=3140 git-svn-id: https://gflags.googlecode.com/svn/trunk@64 6586e3c6-dcc4-952a-343f-ff74eb82781d
This commit is contained in:
parent
29f02f9896
commit
6b70a75081
1 changed files with 1 additions and 0 deletions
|
@ -185,6 +185,7 @@ static void ReportError(DieWhenReporting should_die, const char* format, ...) {
|
|||
vsnprintf(error_message, sizeof(error_message), format, ap);
|
||||
va_end(ap);
|
||||
fprintf(stderr, "%s", error_message);
|
||||
fflush(stderr); // should be unnecessary, but cygwin's rxvt buffers stderr
|
||||
if (should_die == DIE) gflags_exitfunc(1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue