diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-12-02 05:07:35 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-12-02 05:07:35 +0000 |
commit | 3a93adce6609cd3499d85c5f2b9dc38d3d1255c7 (patch) | |
tree | c965535dae00b60b48306a6d69b8ab9becac113d /numpy/fft/fftpack.c | |
parent | 921fa088183b86dbaeb35a9c9af17980e7708a54 (diff) | |
download | numpy-3a93adce6609cd3499d85c5f2b9dc38d3d1255c7.tar.gz |
Fix warnings found by Intel compiler due to unused variables that were set. Make ones work for compound types.
Diffstat (limited to 'numpy/fft/fftpack.c')
-rw-r--r-- | numpy/fft/fftpack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/fft/fftpack.c b/numpy/fft/fftpack.c index 3e5e7d2ed..9c8fd118a 100644 --- a/numpy/fft/fftpack.c +++ b/numpy/fft/fftpack.c @@ -270,11 +270,11 @@ static void passf(int *nac, int ido, int ip, int l1, int idl1, const Treal wa[], int isign) /* isign is -1 for forward transform and +1 for backward transform */ { - int idij, idlj, idot, ipph, i, j, k, l, jc, lc, ik, nt, idj, idl, inc,idp; + int idij, idlj, idot, ipph, i, j, k, l, jc, lc, ik, idj, idl, inc,idp; Treal wai, war; idot = ido / 2; - nt = ip*idl1; + /* nt = ip*idl1;*/ ipph = (ip + 1) / 2; idp = ip*ido; if (ido >= l1) { |