diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-04-23 13:15:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-04-23 13:15:11 +0000 |
commit | aebfb457749be2b5163926619e86aa9894611248 (patch) | |
tree | 135d1b243bd71fb1a7e72fe8d538558e0fea2701 /libavutil | |
parent | 7328cdfa58c1574b618b96f252bbba33d7a6bcd2 (diff) | |
download | ffmpeg-aebfb457749be2b5163926619e86aa9894611248.tar.gz |
Trying _WIN32 for win32 detection.
Originally committed as revision 22953 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/log.c | 2 |
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 |