aboutsummaryrefslogtreecommitdiff
path: root/modules/benchmark/fftbench.c
diff options
context:
space:
mode:
authorhwspeedy <ns@bigbear.dk>2024-05-30 12:40:27 +0200
committerhwspeedy <ns@bigbear.dk>2024-05-30 12:40:27 +0200
commite4c947271abdbd7ef1fa8bbee4cb6ae3a46031fe (patch)
tree60f3e4aee3661ab5d38a7151f36b1ecb2f239ebc /modules/benchmark/fftbench.c
parentc15d1f856e71f80e119e9a4a062bf929ac9e9581 (diff)
FIX Minor gcc warning + more verbose build
Diffstat (limited to 'modules/benchmark/fftbench.c')
-rw-r--r--modules/benchmark/fftbench.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/benchmark/fftbench.c b/modules/benchmark/fftbench.c
index bfd42b98..fdb5434b 100644
--- a/modules/benchmark/fftbench.c
+++ b/modules/benchmark/fftbench.c
@@ -65,7 +65,7 @@ static const int NM1 = 99; // N - 1
static void lup_decompose(FFTBench *fftbench)
{
- int i, j, k, k2, t;
+ int i, j, k, k2=0, t;
double p, temp, **a;
int *perm = (int *) malloc(sizeof(double) * N);