aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alsa.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-05-31 19:04:41 -0700
committerChris Robinson <[email protected]>2010-05-31 19:04:41 -0700
commite98f1205e547422764ef2bdce2c47ac54998f6d6 (patch)
tree3a07c45d3be847a6bed54a9b8d402c2c5738ae51 /Alc/alsa.c
parent2205f91e5f602f33ee231e7b6e2a210241b9da13 (diff)
Increase the temp buffer sizes to construct device names with
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 0e9e5603..75d02686 100644
--- a/Alc/alsa.c
+++ b/Alc/alsa.c
@@ -221,7 +221,7 @@ static DevMap *probe_devices(snd_pcm_stream_t stream, ALuint *count)
snd_ctl_card_info_t *info;
snd_pcm_info_t *pcminfo;
DevMap *DevList;
- char name[128];
+ char name[1024];
psnd_ctl_card_info_malloc(&info);
psnd_pcm_info_malloc(&pcminfo);