From 294190cc2d7e28a3231f558a0deb4ae3c1431819 Mon Sep 17 00:00:00 2001 From: Torfinn Berset Date: Mon, 11 Feb 2019 07:52:14 +0100 Subject: [PATCH] Fix duplicate `const` declaration specifier --- Source/FilteringFunctions/arm_fir_decimate_fast_q15.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/FilteringFunctions/arm_fir_decimate_fast_q15.c b/Source/FilteringFunctions/arm_fir_decimate_fast_q15.c index 52781eb7..30cdd52f 100644 --- a/Source/FilteringFunctions/arm_fir_decimate_fast_q15.c +++ b/Source/FilteringFunctions/arm_fir_decimate_fast_q15.c @@ -75,7 +75,7 @@ void arm_fir_decimate_fast_q15( const q15_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q15_t *pStateCurnt; /* Points to the current sample of the state */ q15_t *px; /* Temporary pointer for state buffer */ - const const q15_t *pb; /* Temporary pointer coefficient buffer */ + const q15_t *pb; /* Temporary pointer coefficient buffer */ q31_t x0, x1, c0, c1; /* Temporary variables to hold state and coefficient values */ q31_t sum0; /* Accumulators */ q31_t acc0, acc1;