Mercurial > mplayer.hg
changeset 30400:88fd2aa823e5
Do not needlessly make local variable static.
author | reimar |
---|---|
date | Wed, 27 Jan 2010 18:16:41 +0000 |
parents | d280f1bbfe93 |
children | a97f9a9f30d1 |
files | libao2/ao_alsa.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/libao2/ao_alsa.c Wed Jan 27 18:11:15 2010 +0000 +++ b/libao2/ao_alsa.c Wed Jan 27 18:16:41 2010 +0000 @@ -115,9 +115,9 @@ snd_mixer_elem_t *elem; snd_mixer_selem_id_t *sid; - static char *mix_name = "PCM"; - static char *card = "default"; - static int mix_index = 0; + char *mix_name = "PCM"; + char *card = "default"; + int mix_index = 0; long pmin, pmax; long get_vol, set_vol;