summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-08-12 01:38:38 +0200
committerwm4 <wm4@nowhere>2013-08-12 01:38:38 +0200
commit7df6539a871b41cdb654d498f39ba005996c300f (patch)
tree6ab51ff68302c26e9c8e0f6d9aaa4b7123ddabdc /video
parent2827295703c74e3c119df9a435aa856e268c2ea9 (diff)
downloadmpv-7df6539a871b41cdb654d498f39ba005996c300f.tar.bz2
mpv-7df6539a871b41cdb654d498f39ba005996c300f.tar.xz
vo: fix build with #ifdef -> #if
Whoever had the idea of introducing mixed conventions for these preprocessor symbols should be shot.
Diffstat (limited to 'video')
-rw-r--r--video/out/vo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 592dfe6243..be1ba84a12 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -87,7 +87,7 @@ const struct vo_driver *video_out_drivers[] =
#ifdef CONFIG_GL
&video_out_opengl_old,
#endif
-#ifdef CONFIG_VAAPI
+#if CONFIG_VAAPI
&video_out_vaapi,
#endif
#ifdef CONFIG_X11