From: Takashi Iwai Date: Mon, 26 Nov 2012 17:13:01 +0000 (+0100) Subject: PCM: shut up a compile "unused parameter" compile warning in pcm_multi.c X-Git-Tag: v1.0.27~26 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=f47816d6b78003b5161ffb67b3b5c1b62b8a2a00;p=alsa-lib.git PCM: shut up a compile "unused parameter" compile warning in pcm_multi.c Signed-off-by: Takashi Iwai --- diff --git a/src/pcm/pcm_multi.c b/src/pcm/pcm_multi.c index 2db82c0c..f58852ca 100644 --- a/src/pcm/pcm_multi.c +++ b/src/pcm/pcm_multi.c @@ -739,7 +739,7 @@ static int snd_pcm_multi_mmap(snd_pcm_t *pcm) return 0; } -static int snd_pcm_multi_may_wait_for_avail_min(snd_pcm_t *pcm, snd_pcm_uframes_t avail) +static int snd_pcm_multi_may_wait_for_avail_min(snd_pcm_t *pcm, snd_pcm_uframes_t avail ATTRIBUTE_UNUSED) { snd_pcm_multi_t *multi = pcm->private_data; snd_pcm_t *slave = multi->slaves[multi->master_slave].pcm;