]> git.alsa-project.org Git - alsa-lib.git/commitdiff
Fixed double increment
authorAbramo Bagnara <abramo@alsa-project.org>
Tue, 18 Jul 2000 13:37:36 +0000 (13:37 +0000)
committerAbramo Bagnara <abramo@alsa-project.org>
Tue, 18 Jul 2000 13:37:36 +0000 (13:37 +0000)
src/pcm/plugin/rate.c

index a7853075a7164a10f92ae09ceaeb808cc2d1db01..def5667f5906fbb6fff149065ec43800096673c9 100644 (file)
@@ -99,7 +99,7 @@ static void resample_expand(snd_pcm_plugin_t *plugin,
 #include "plugin_ops.h"
 #undef GET_S16_END
        
-       for (channel = 0; channel < plugin->src_format.channels; channel++, rchannels++) {
+       for (channel = 0; channel < plugin->src_format.channels; channel++) {
                pos = data->pos;
                S1 = rchannels->last_S1;
                S2 = rchannels->last_S2;