]> git.sesse.net Git - vlc/blobdiff - modules/audio_filter/channel_mixer/mono.c
* More compiler warning fixes (const mostly)
[vlc] / modules / audio_filter / channel_mixer / mono.c
index 211a9624614646e3bfb79b122e492f3bea78debd..4ad93c2c2b5a9750798ca43feb38736699452152 100644 (file)
@@ -94,8 +94,8 @@ struct filter_sys_t
     "except the selected channel. Choose one from (0=left, 1=right " \
     "2=rear left, 3=rear right, 4=center, 5=left front)")
 
-static int pi_pos_values[] = { 0, 1, 2, 4, 8, 5 };
-static char *ppsz_pos_descriptions[] =
+static const int pi_pos_values[] = { 0, 1, 2, 4, 8, 5 };
+static const char *ppsz_pos_descriptions[] =
 { N_("Left"), N_("Right"), N_("Left rear"), N_("Right rear"), N_("Center"),
   N_("Left front") };