From cfa0f12a613d3425efeeddc68e5dbf1bb1181f0c Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Wed, 7 Oct 2009 20:11:00 +0200 Subject: [PATCH] tests/src/test-filter.c: avoid redefining o --- tests/src/test-filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/src/test-filter.c b/tests/src/test-filter.c index 9a23b94b..18323c78 100644 --- a/tests/src/test-filter.c +++ b/tests/src/test-filter.c @@ -17,14 +17,14 @@ main (void) fvec_print (in); del_aubio_filter (o); - aubio_filter_t *o = new_aubio_filter_c_weighting (44100, channels); + o = new_aubio_filter_c_weighting (44100, channels); in->data[0][12] = 0.5; fvec_print (in); aubio_filter_do_outplace (o, in, out); fvec_print (out); del_aubio_filter (o); - aubio_filter_t *o = new_aubio_filter_c_weighting (44100, channels); + o = new_aubio_filter_c_weighting (44100, channels); in->data[0][12] = 0.5; fvec_print (in); aubio_filter_do_filtfilt (o, in, out); -- 2.26.2