summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-08-14 01:30:20 +0200
committerwm4 <wm4@nowhere>2014-08-14 01:30:20 +0200
commitde399278fc1c523f89c0fd5e45fb88a060949037 (patch)
tree09193f8afa60a769b722700859f88bce54711b62
parent061a5af54439fedbe6e89d03e643631fafd988a0 (diff)
downloadmpv-de399278fc1c523f89c0fd5e45fb88a060949037.tar.bz2
mpv-de399278fc1c523f89c0fd5e45fb88a060949037.tar.xz
vo: fix mingw compilation
-rw-r--r--video/out/vo.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index a3e81e93fe..ae9c635917 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -23,8 +23,10 @@
#include <stdbool.h>
#include <pthread.h>
+#ifndef __MINGW32__
#include <unistd.h>
#include <poll.h>
+#endif
#include <libavutil/common.h>