diff options
author | wm4 <wm4@nowhere> | 2013-01-15 21:16:10 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-01-15 21:16:10 +0100 |
commit | efcd479e7e6c86f84f7edc912ff4843df5087760 (patch) | |
tree | 409584386af27015ecb3ced2bbb9f281c851433a /video/out/vo_opengl_old.c | |
parent | 32d2e958a8ab846ca40276595cdceecd842227e7 (diff) | |
download | mpv-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/out/vo_opengl_old.c')
-rw-r--r-- | video/out/vo_opengl_old.c | 1 |
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" |