Added a flush after fprintf

This is patch [#6921] Make error printing a bit more reliable
from GSR
http://projects.blender.org/tracker/index.php?func=detail&aid=6921&group_id=9&atid=127

Kent
This commit is contained in:
Kent Mein
2007-07-11 18:45:39 +00:00
parent fb9b3022d3
commit 8c96c15c92

View File

@@ -704,6 +704,7 @@ static void error_cb(char *err)
static void mem_error_cb(char *errorStr)
{
fprintf(stderr, errorStr);
fflush(stderr);
}
void setCallbacks(void)