]> git.alsa-project.org Git - alsa-lib.git/commitdiff
Trivial fix of compile warning
authorTakashi Iwai <tiwai@suse.de>
Thu, 22 Mar 2007 00:17:22 +0000 (01:17 +0100)
committerTakashi Iwai <tiwai@suse.de>
Thu, 22 Mar 2007 00:17:22 +0000 (01:17 +0100)
Fix unused variable j.

src/pcm/pcm_multi.c

index 94bcf50a4072e3103bbc0d0c510568285351f278..e15038cc194f46376200733cfb39f1e914c9f28d 100644 (file)
@@ -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) {