From 49546748482e5fc5a7b20871759ecbec83c45dc9 Mon Sep 17 00:00:00 2001 From: JbR <90027771+jbr-smtg@users.noreply.github.com> Date: Mon, 13 Sep 2021 14:24:53 +0200 Subject: [PATCH] Fixing double init value --- Source/BasicMathFunctions/arm_dot_prod_f64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/BasicMathFunctions/arm_dot_prod_f64.c b/Source/BasicMathFunctions/arm_dot_prod_f64.c index 4a99f2e2..978e9850 100644 --- a/Source/BasicMathFunctions/arm_dot_prod_f64.c +++ b/Source/BasicMathFunctions/arm_dot_prod_f64.c @@ -66,7 +66,7 @@ void arm_dot_prod_f64( float64_t * result) { uint32_t blkCnt; /* Loop counter */ - float64_t sum = 0.0f; /* Temporary return variable */ + float64_t sum = 0.; /* Temporary return variable */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize;