summaryrefslogtreecommitdiff
path: root/libavutil/log.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-04-23 13:15:11 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-04-23 13:15:11 +0000
commitaebfb457749be2b5163926619e86aa9894611248 (patch)
tree135d1b243bd71fb1a7e72fe8d538558e0fea2701 /libavutil/log.c
parent7328cdfa58c1574b618b96f252bbba33d7a6bcd2 (diff)
Trying _WIN32 for win32 detection.
Originally committed as revision 22953 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/log.c')
-rw-r--r--libavutil/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/log.c b/libavutil/log.c
index 9c13d4d1a4..f37e40cb75 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