]> git.sesse.net Git - vlc/commitdiff
alsa: move const qualifier at the right place
authorRémi Duraffort <ivoire@videolan.org>
Thu, 23 Jan 2014 18:27:09 +0000 (19:27 +0100)
committerRémi Duraffort <ivoire@videolan.org>
Thu, 23 Jan 2014 18:27:24 +0000 (19:27 +0100)
modules/access/alsa.c

index 1125545bb06d690498cb2b9c75e0ce5e7a08b710..6cc05878ef353feb2d82e24924127d330dd5462a 100644 (file)
@@ -46,7 +46,7 @@ static const int rate_values[] = { 192000, 176400,
     32000, 22050, 24000, 16000,
     11025, 8000, 4000
 };
-static const const char *rate_names[] = { N_("192000 Hz"), N_("176400 Hz"),
+static const char *const rate_names[] = { N_("192000 Hz"), N_("176400 Hz"),
     N_("96000 Hz"), N_("88200 Hz"), N_("48000 Hz"), N_("44100 Hz"),
     N_("32000 Hz"), N_("22050 Hz"), N_("24000 Hz"), N_("16000 Hz"),
     N_("11025 Hz"), N_("8000 Hz"), N_("4000 Hz")