From: Dale Weiler Date: Sun, 14 Apr 2013 01:26:40 +0000 (+0000) Subject: More flattening. I don't know why I turned off buffering, that makes output to consol... X-Git-Tag: before-library~67 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=4591b3a4fa86d0c61fa14a66c6da1803f12dd8cf More flattening. I don't know why I turned off buffering, that makes output to console even slower due to all the flushes, which actually slows down compilation. --- diff --git a/conout.c b/conout.c index 8613ece..0595f33 100644 --- a/conout.c +++ b/conout.c @@ -282,10 +282,6 @@ int con_change(const char *out, const char *err) { con_enablecolor(); } else if (!(console.handle_err = fs_file_open(err, "w"))) return 0; - /* no buffering */ - setvbuf(console.handle_out, NULL, _IONBF, 0); - setvbuf(console.handle_err, NULL, _IONBF, 0); - return 1; }