diff options
author | jofret | 2009-04-23 06:43:49 +0000 |
---|---|---|
committer | jofret | 2009-04-23 06:43:49 +0000 |
commit | 63791dac2de02e47f6a4558d8a5788c04c49bda6 (patch) | |
tree | 6f15209a7a7a226ae2d879cdf991de0a174fe72f | |
parent | 3550bd8015f255c0024a3f7d07f2a35ae500fa3c (diff) | |
download | scilab2c-63791dac2de02e47f6a4558d8a5788c04c49bda6.tar.gz scilab2c-63791dac2de02e47f6a4558d8a5788c04c49bda6.tar.bz2 scilab2c-63791dac2de02e47f6a4558d8a5788c04c49bda6.zip |
Force compiler to see this as double without a cast.
-rw-r--r-- | scilab2c/src/signalProcessing/ifft/difftmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scilab2c/src/signalProcessing/ifft/difftmx.c b/scilab2c/src/signalProcessing/ifft/difftmx.c index 5345f31a..a2cce1b6 100644 --- a/scilab2c/src/signalProcessing/ifft/difftmx.c +++ b/scilab2c/src/signalProcessing/ifft/difftmx.c @@ -142,7 +142,7 @@ int difftmx ( double* _pdblA , double* _pdblB , int _iNtot, int _iN, int _iNspan inc = abs ( isn ) ; nt = inc*ntot ; ks = inc*nspan; - rad = atan ( double(1) ); + rad = atan (1.0); c72 = cos (rad/0.6250); s72 = sin (rad/0.6250); |