From: Takashi Iwai Date: Thu, 22 Mar 2007 00:17:22 +0000 (+0100) Subject: Trivial fix of compile warning X-Git-Tag: v1.0.14rc4~9 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=c6bebac05ed0580efa76a23609fca2c0a4f5347c;p=alsa-lib.git Trivial fix of compile warning Fix unused variable j. --- diff --git a/src/pcm/pcm_multi.c b/src/pcm/pcm_multi.c index 94bcf50a..e15038cc 100644 --- a/src/pcm/pcm_multi.c +++ b/src/pcm/pcm_multi.c @@ -630,7 +630,7 @@ static int snd_pcm_multi_resume(snd_pcm_t *pcm) static int snd_pcm_multi_link_slaves(snd_pcm_t *pcm, snd_pcm_t *master) { snd_pcm_multi_t *multi = pcm->private_data; - unsigned int i, j; + unsigned int i; int err; for (i = 0; i < multi->slaves_count; ++i) {