summaryrefslogtreecommitdiff
path: root/libs/qm-dsp/maths/Correlation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/qm-dsp/maths/Correlation.cpp')
-rw-r--r--libs/qm-dsp/maths/Correlation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/qm-dsp/maths/Correlation.cpp b/libs/qm-dsp/maths/Correlation.cpp
index fd36ac3473..17ee28f749 100644
--- a/libs/qm-dsp/maths/Correlation.cpp
+++ b/libs/qm-dsp/maths/Correlation.cpp
@@ -40,7 +40,7 @@ void Correlation::doAutoUnBiased(double *src, double *dst, unsigned int length)
{
for( j = i; j < length; j++)
{
- tmp += src[ j-i ] * src[ j ];
+ tmp += src[ j-i ] * src[ j ];
}