diff options
Diffstat (limited to 'src/c/signalProcessing/interfaces/int_ifft.h')
-rw-r--r-- | src/c/signalProcessing/interfaces/int_ifft.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/c/signalProcessing/interfaces/int_ifft.h b/src/c/signalProcessing/interfaces/int_ifft.h index e541b0ee..78e63753 100644 --- a/src/c/signalProcessing/interfaces/int_ifft.h +++ b/src/c/signalProcessing/interfaces/int_ifft.h @@ -38,13 +38,13 @@ /* FIXME : malloc here */ #define s2ifftc2(in,size,out) {float* ZEROS;\ - ZEROS=malloc((uint)(size[0]*size[1]*sizeof(float));\ + ZEROS=malloc((uint)(size[0]*size[1]*sizeof(float)));\ szerosa(ZEROS,size[0],size[1]);\ cifftma(FloatComplexMatrix(in,ZEROS,size[0]*size[1]), size[0], size[1], out);\ } /* FIXME : malloc here */ #define d2ifftz2(in,size,out) {double* ZEROS;\ - ZEROS=malloc((uint)(size[0]*size[1]*sizeof(double));\ + ZEROS=malloc((uint)(size[0]*size[1]*sizeof(double)));\ dzerosa(ZEROS,size[0],size[1]);\ zifftma(DoubleComplexMatrix(in,ZEROS,size[0]*size[1]), size[0], size[1], out);\ } |