From aebfb457749be2b5163926619e86aa9894611248 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 23 Apr 2010 13:15:11 +0000 Subject: [PATCH] Trying _WIN32 for win32 detection. Originally committed as revision 22953 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/log.c b/libavutil/log.c index 9c13d4d..f37e40c 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -33,7 +33,7 @@ static #endif int av_log_level = AV_LOG_INFO; -#if (!HAVE_ISATTY) || defined(WIN32) +#if (!HAVE_ISATTY) || defined(_WIN32) #define isatty(s) 0 #endif -- 2.7.4