From bf65f53fbaaca39600017247108b0627033f2fb1 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Mon, 27 Jul 2009 10:02:04 -0500 Subject: Remove setvbuf(, NULL, _IOLBF, 0) calls for Win32 On Win32 the setvbuf function requires the last parameter to be size between 2 and INT_MAX bytes, so the calls always failed. Since the whole point of the calls is to set line-buffered mode for the file handle and that's not supported on Win32 anyway, conditionally remove them. Signed-off-by: Filip Navara Signed-off-by: Anthony Liguori --- exec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'exec.c') diff --git a/exec.c b/exec.c index 7d3eb1a..ef79d6d 100644 --- a/exec.c +++ b/exec.c @@ -1491,7 +1491,8 @@ void cpu_set_log(int log_flags) static char logfile_buf[4096]; setvbuf(logfile, logfile_buf, _IOLBF, sizeof(logfile_buf)); } -#else +#elif !defined(_WIN32) + /* Win32 doesn't support line-buffering and requires size >= 2 */ setvbuf(logfile, NULL, _IOLBF, 0); #endif log_append = 1; -- cgit v1.1