# HG changeset patch # User Peter Meerwald # Date 1316170954 -7200 # Node ID 3d08140650d8d32e50e60bdc387c521cec3de13c # Parent cfec79393811a259d17dcd6c5868c1d1ef9eee86 cleanup diff -r cfec79393811 -r 3d08140650d8 peck_fft.h --- a/peck_fft.h Fri Sep 16 12:57:27 2011 +0200 +++ b/peck_fft.h Fri Sep 16 13:02:34 2011 +0200 @@ -13,7 +13,7 @@ #ifdef USE_SIMD # include # define peck_fft_scalar __m128 -#define PECK_FFT_MALLOC(nbytes) _mm_malloc(nbytes,16) +#define PECK_FFT_MALLOC(nbytes) _mm_malloc(nbytes, 16) #define PECK_FFT_FREE _mm_free #else #define PECK_FFT_MALLOC malloc @@ -38,7 +38,7 @@ typedef struct { peck_fft_scalar r; peck_fft_scalar i; -}peck_fft_cpx; +} peck_fft_cpx; typedef struct peck_fft_state* peck_fft_cfg;