Trivial fix of compile warning

Fix unused variable j.
This commit is contained in:
Takashi Iwai 2007-03-22 01:17:22 +01:00
parent 36987b02c0
commit c6bebac05e

View 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) {