Remove unneeded spaces from code.

Line now matches the style of the rest of the function.
This commit is contained in:
Scott Mansell 2015-02-16 12:59:45 +13:00
parent 16a6392308
commit 7add7b685f
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}