comparison src/audacious/effect.c @ 3556:23fcb140ee13 trunk

use ->len, not ->length.
author William Pitcock <nenolod@atheme.org>
date Tue, 18 Sep 2007 13:26:04 -0500
parents a73951b8cd9f
children 65b9207fb7b2
comparison
equal deleted inserted replaced
3555:a73951b8cd9f 3556:23fcb140ee13
185 context->fmt = new_format; 185 context->fmt = new_format;
186 context->srate = new_rate; 186 context->srate = new_rate;
187 context->channels = new_nch; 187 context->channels = new_nch;
188 } 188 }
189 189
190 context->length = effect_do_mod_samples(&context->data, context->length, 190 context->len = effect_do_mod_samples(&context->data, context->len,
191 context->fmt, context->srate, context->channels); 191 context->fmt, context->srate, context->channels);
192 } 192 }
193 193