[MPlayer-cvslog] r28621 - trunk/libvo/sub.c
diego
subversion at mplayerhq.hu
Tue Feb 17 03:57:11 CET 2009
Author: diego
Date: Tue Feb 17 03:57:10 2009
New Revision: 28621
Log:
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
Modified:
trunk/libvo/sub.c
Modified: trunk/libvo/sub.c
==============================================================================
--- trunk/libvo/sub.c Tue Feb 17 01:09:15 2009 (r28620)
+++ trunk/libvo/sub.c Tue Feb 17 03:57:10 2009 (r28621)
@@ -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
More information about the MPlayer-cvslog
mailing list