]> git.sesse.net Git - vlc/commitdiff
cast to (char*) , remove unused code
authorRafaël Carré <funman@videolan.org>
Sun, 27 Jan 2008 14:25:31 +0000 (14:25 +0000)
committerRafaël Carré <funman@videolan.org>
Sun, 27 Jan 2008 14:25:31 +0000 (14:25 +0000)
src/osd/osd.c

index 829af78cc33e05dd43e24162507793818059e4e2..def4ff5c6c27cec24a97f4d55a2e55313da4414f 100644 (file)
@@ -38,7 +38,9 @@
 
 #undef OSD_MENU_DEBUG
 
+#if 0
 static const char *ppsz_button_states[] = { "unselect", "select", "pressed" };
+#endif
 
 /*****************************************************************************
  * Local prototypes
@@ -90,9 +92,9 @@ static osd_menu_t *osd_ParserLoad( vlc_object_t *p_this, const char *psz_file )
         char *psz_ext = strrchr( p_menu->psz_file, '.' );
 
         if( psz_ext && !strcmp( psz_ext, ".cfg") )
-            psz_type = "import-osd";
+            psz_type = (char*)"import-osd";
         else
-            psz_type = "import-osd-xml";
+            psz_type = (char*)"import-osd-xml";
 
         p_menu->p_parser = module_Need( p_menu, "osd parser",
                                         psz_type, VLC_TRUE );