From 7add7b685f930c2de0e8b08c8b2a30a4b6bd092d Mon Sep 17 00:00:00 2001 From: Scott Mansell Date: Mon, 16 Feb 2015 12:59:45 +1300 Subject: [PATCH] Remove unneeded spaces from code. Line now matches the style of the rest of the function. --- Source/Core/AudioCommon/DPL2Decoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/AudioCommon/DPL2Decoder.cpp b/Source/Core/AudioCommon/DPL2Decoder.cpp index da16ee4af8..ca7afc9afa 100644 --- a/Source/Core/AudioCommon/DPL2Decoder.cpp +++ b/Source/Core/AudioCommon/DPL2Decoder.cpp @@ -51,7 +51,7 @@ static _ftype_t DotProduct(int count,const T *buf,const _ftype_t *coefficients) } while (count--) - sum0+= *buf++ * *coefficients++; + sum0+=*buf++**coefficients++; return sum0+sum1+sum2+sum3; }