diff options
author | Ali H. Fardan <raiz@firemail.cc> | 2016-09-05 02:28:18 +0300 |
---|---|---|
committer | Ali H. Fardan <raiz@firemail.cc> | 2016-09-05 02:28:18 +0300 |
commit | 113979e5b8398a2c26736749480fe32b5c49a66b (patch) | |
tree | 2a7b6b98ff811a77fc4804221b9e6c0ca706bbb2 /slstatus.c | |
parent | 720328cef9a9d81d2bd876bdf89103782b9cab91 (diff) |
fixed some mistakes
Diffstat (limited to 'slstatus.c')
-rw-r--r-- | slstatus.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -490,17 +490,17 @@ vol_perc(const char *snd_card) snd_mixer_selem_id_t *s_elem; snd_mixer_open(&handle, 0); - snd_mixer_attach(handle, snd_card); + snd_mixer_attach(handle, "default"); snd_mixer_selem_register(handle, NULL, NULL); snd_mixer_load(handle); snd_mixer_selem_id_malloc(&s_elem); - snd_mixer_selem_id_set_name(s_elem, "Master"); + snd_mixer_selem_id_set_name(s_elem, snd_card); elem = snd_mixer_find_selem(handle, s_elem); if (elem == NULL) { snd_mixer_selem_id_free(s_elem); snd_mixer_close(handle); - perror("alsa error: "); + perror("alsa error"); return smprintf(UNKNOWN_STR); } |