]> git.sesse.net Git - vlc/blobdiff - modules/access/dvdread.c
* Some more const warning fixes
[vlc] / modules / access / dvdread.c
index 9f059f557d17451bd79318b32dc435ace302f244..d5ed4a7ac1a407cc873591a9b114c43b0dc1a586 100644 (file)
@@ -83,8 +83,8 @@
            "libcss.\n" \
     "The default method is: key.")
 
-static char *psz_css_list[] = { "title", "disc", "key" };
-static char *psz_css_list_text[] = { N_("title"), N_("Disc"), N_("Key") };
+static const char *psz_css_list[] = { "title", "disc", "key" };
+static const char *psz_css_list_text[] = { N_("title"), N_("Disc"), N_("Key") };
 
 static int  Open ( vlc_object_t * );
 static void Close( vlc_object_t * );