[vlc-commits] alsa: move const qualifier at the right place

Rémi Duraffort git at videolan.org
Thu Jan 23 19:27:40 CET 2014


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Thu Jan 23 19:27:09 2014 +0100| [6fc0ae32f0029420cf52665b164c87840b08fb61] | committer: Rémi Duraffort

alsa: move const qualifier at the right place

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6fc0ae32f0029420cf52665b164c87840b08fb61
---

 modules/access/alsa.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/access/alsa.c b/modules/access/alsa.c
index 1125545..6cc0587 100644
--- a/modules/access/alsa.c
+++ b/modules/access/alsa.c
@@ -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")



More information about the vlc-commits mailing list