Skip to content

Commit

Permalink
alsa: move const qualifier at the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
ivoire committed Jan 23, 2014
1 parent 5ca6d6e commit 6fc0ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/access/alsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 6fc0ae3

Please sign in to comment.