aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alsa.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-08-19 01:59:03 -0700
committerChris Robinson <[email protected]>2011-08-19 01:59:03 -0700
commite8e12865728289e6e9d428bd868d6ec4dc7e9d4c (patch)
tree8fa7ef19562dc0b3fb50fa2542869f5639454893 /Alc/alsa.c
parent3d722b9ba07d0c2bb34b73dd46183f2ef4eba8ce (diff)
Remove the "via *" portion of the enumerated devices
Diffstat (limited to 'Alc/alsa.c')
-rw-r--r--Alc/alsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alsa.c b/Alc/alsa.c
index 0764068d..7dd257c3 100644
--- a/Alc/alsa.c
+++ b/Alc/alsa.c
@@ -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;