aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/pulseaudio.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2009-09-23 07:10:23 -0700
committerChris Robinson <[email protected]>2009-09-23 07:10:23 -0700
commit774eae0f2f4b20dcebb5a27ebc9b5351ed4b1365 (patch)
treec8c20dd41fe40259bb4e9dafb567f19e5fa36fda /Alc/pulseaudio.c
parent201b108a543c8d0472341918ffac012ad1d94a69 (diff)
Silence unused parameter warning
Diffstat (limited to 'Alc/pulseaudio.c')
-rw-r--r--Alc/pulseaudio.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Alc/pulseaudio.c b/Alc/pulseaudio.c
index 8cc87606..ebdbd223 100644
--- a/Alc/pulseaudio.c
+++ b/Alc/pulseaudio.c
@@ -172,6 +172,7 @@ static void stream_write_callback(pa_stream *stream, size_t len, void *pdata) //
ALCdevice *Device = pdata;
pulse_data *data = Device->ExtraData;
void *buf = ppa_xmalloc0(data->attr.minreq);
+ (void)len;
aluMixData(Device, buf, data->attr.minreq/data->frame_size);
ppa_stream_write(stream, buf, data->attr.minreq, ppa_xfree, 0,