Skip to content

Commit a243d44

Browse files
committed
Add missing declaration of index variable in non-volk builds
1 parent 44b8392 commit a243d44

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/sigutils/smoothpsd.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ SU_METHOD(su_smoothpsd, SUBOOL, feed, const SUCOMPLEX *data, SUSCOUNT size)
184184
volk_32fc_x2_multiply_32fc(self->fft, self->fft, self->window_func,
185185
self->params.fft_size);
186186
#else
187+
unsigned int i;
187188
for (i = 0; i < self->params.fft_size; ++i)
188189
self->fft[i] *= self->window_func[i];
189190
#endif

0 commit comments

Comments
 (0)