summaryrefslogtreecommitdiff
path: root/cmdutils.h
diff options
context:
space:
mode:
authorJohn Peebles <johnpeeb@gmail.com>2014-05-16 21:44:19 -0400
committerMarton Balint <cus@passwd.hu>2014-05-17 13:18:29 +0200
commite11697759d06900195136df2be035d0d052316a1 (patch)
tree2c11d3eb50fa1f8d001c2734a0a227383fc0f548 /cmdutils.h
parent1fab67b6851f64778aa0ad9087e2d14f9ef1a798 (diff)
downloadffmpeg-e11697759d06900195136df2be035d0d052316a1.tar.gz
cmdutils: replace usages of "#ifdef __MINGW32__" with "#ifdef _WIN32" because MSVC only defines _WIN32
With the previous patch, this should fix ticket #3580 as well. Signed-off-by: John Peebles <johnpeeb@gmail.com>
Diffstat (limited to 'cmdutils.h')
-rw-r--r--cmdutils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils.h b/cmdutils.h
index 3fbaae93c2..c4a16aac73 100644
--- a/cmdutils.h
+++ b/cmdutils.h
@@ -30,7 +30,7 @@
#include "libavformat/avformat.h"
#include "libswscale/swscale.h"
-#ifdef __MINGW32__
+#ifdef _WIN32
#undef main /* We don't want SDL to override our main() */
#endif