diff options
Diffstat (limited to 'src/math/j1.c')
-rw-r--r-- | src/math/j1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math/j1.c b/src/math/j1.c index ac7bb1eb..df724d17 100644 --- a/src/math/j1.c +++ b/src/math/j1.c @@ -250,7 +250,7 @@ static const double ps2[5] = { static double pone(double x) { const double *p,*q; - double z,r,s; + double_t z,r,s; uint32_t ix; GET_HIGH_WORD(ix, x); @@ -346,7 +346,7 @@ static const double qs2[6] = { static double qone(double x) { const double *p,*q; - double s,r,z; + double_t s,r,z; uint32_t ix; GET_HIGH_WORD(ix, x); |