summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-17 02:57:10 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-17 02:57:10 +0000
commitde53a241ed491b9938ff49075db3842ef86c0d71 (patch)
tree7c7764b755fdf3eac96875cbe26168d69c1a53f3 /libvo
parent991d64b31f076b9e2128dd47b17aa1554e166571 (diff)
downloadmpv-de53a241ed491b9938ff49075db3842ef86c0d71.tar.bz2
mpv-de53a241ed491b9938ff49075db3842ef86c0d71.tar.xz
The CONFIG_TV_TELETEXT preprocessor directive is defined/undefined,
so use it with #ifdef instead of #if; fixes the warning: libvo/sub.c:1233:5: warning: "CONFIG_TV_TELETEXT" is not defined git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28621 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/sub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/sub.c b/libvo/sub.c
index cfd88ef9d8..196c8c9033 100644
--- a/libvo/sub.c
+++ b/libvo/sub.c
@@ -1230,7 +1230,7 @@ void vo_init_osd(void){
#ifdef CONFIG_DVDNAV
new_osd_obj(OSDTYPE_DVDNAV);
#endif
-#if CONFIG_TV_TELETEXT
+#ifdef CONFIG_TV_TELETEXT
new_osd_obj(OSDTYPE_TELETEXT);
#endif
#ifdef CONFIG_FREETYPE