From 716c7a821a76e65bff30d0292095c585e37c3ac0 Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Fri, 17 May 2019 17:30:07 +0530 Subject: fix compilation warnings --- src/c/signalProcessing/fft/fft842.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/c/signalProcessing/fft') diff --git a/src/c/signalProcessing/fft/fft842.c b/src/c/signalProcessing/fft/fft842.c index 162490fe..e3737f86 100644 --- a/src/c/signalProcessing/fft/fft842.c +++ b/src/c/signalProcessing/fft/fft842.c @@ -29,7 +29,6 @@ static int fastlog2( int n) void fft842 (doubleComplex* b, int size , int in) { - double fn; doubleComplex temp ; int L[16],L1,L2,L3,L4,L5,L6,L7,L8,L9,L10,L11,L12,L13,L14,L15; @@ -39,7 +38,6 @@ void fft842 (doubleComplex* b, int size , int in) n2pow = fastlog2( size ); nthpo = size ; - fn = 1.0 / (double)nthpo; if(in==FORWARD) -- cgit