diff options
author | Chris Robinson <[email protected]> | 2011-08-19 01:59:03 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-19 01:59:03 -0700 |
commit | e8e12865728289e6e9d428bd868d6ec4dc7e9d4c (patch) | |
tree | 8fa7ef19562dc0b3fb50fa2542869f5639454893 /Alc/alsa.c | |
parent | 3d722b9ba07d0c2bb34b73dd46183f2ef4eba8ce (diff) |
Remove the "via *" portion of the enumerated devices
Diffstat (limited to 'Alc/alsa.c')
-rw-r--r-- | Alc/alsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -327,7 +327,7 @@ static DevMap *probe_devices(snd_pcm_stream_t stream, ALuint *count) DevList = temp; cname = snd_ctl_card_info_get_name(info); dname = snd_pcm_info_get_name(pcminfo); - snprintf(name, sizeof(name), "%s [%s] (hw:%d,%d) via ALSA", + snprintf(name, sizeof(name), "%s [%s] (hw:%d,%d)", cname, dname, card, dev); DevList[idx].name = strdup(name); DevList[idx].card = card; |