summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-01-15 21:16:10 +0100
committerwm4 <wm4@nowhere>2013-01-15 21:16:10 +0100
commitefcd479e7e6c86f84f7edc912ff4843df5087760 (patch)
tree409584386af27015ecb3ced2bbb9f281c851433a /video
parent32d2e958a8ab846ca40276595cdceecd842227e7 (diff)
downloadmpv-efcd479e7e6c86f84f7edc912ff4843df5087760.tar.bz2
mpv-efcd479e7e6c86f84f7edc912ff4843df5087760.tar.xz
vo_opengl_old: add missing include statement
<ctype.h> is needed at least for isalnum(). Most time this worked, because some ffmpeg or Libav versions recursively include this header from libavutil/common.h. Fix it so it always works.
Diffstat (limited to 'video')
-rw-r--r--video/out/vo_opengl_old.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/out/vo_opengl_old.c b/video/out/vo_opengl_old.c
index 8c32676e1d..5943df10b4 100644
--- a/video/out/vo_opengl_old.c
+++ b/video/out/vo_opengl_old.c
@@ -26,6 +26,7 @@
#include <string.h>
#include <math.h>
#include <stdbool.h>
+#include <ctype.h>
#include <assert.h>
#include "config.h"