Mercurial > hg > qm-dsp
diff dsp/signalconditioning/DFProcess.cpp @ 414:7e8d1f26b098
Fix compiler warnings with -Wall -Wextra
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 28 Sep 2015 12:33:17 +0100 |
parents | c5e1b25d5177 |
children | ca658c7215a9 |
line wrap: on
line diff
--- a/dsp/signalconditioning/DFProcess.cpp Tue Sep 08 13:18:14 2015 +0100 +++ b/dsp/signalconditioning/DFProcess.cpp Mon Sep 28 12:33:17 2015 +0100 @@ -193,7 +193,7 @@ MathUtilities::getAlphaNorm( src, m_length, m_alphaNormParam, &DFAlphaNorm ); - for( unsigned int i = 0; i< m_length; i++) + for (int i = 0; i < m_length; i++) { dst[ i ] = ( src[ i ] - DFMin ) / DFAlphaNorm; }