Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2007-07-11 22:45:39 +0400
committerKent Mein <mein@cs.umn.edu>2007-07-11 22:45:39 +0400
commit8c96c15c92b77d78d8a84d804bf6ca727c9448e6 (patch)
tree85e030aa16d413247243358e3bdb5cb3ed1cae77 /source/creator/creator.c
parentfb9b3022d37c3d54897c8d5f3c36148569b341cf (diff)
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
Diffstat (limited to 'source/creator/creator.c')
-rw-r--r--source/creator/creator.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index d63e69255eb..428b3586954 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -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)