diff options
Diffstat (limited to 'src/math/asinh.c')
-rw-r--r-- | src/math/asinh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/asinh.c b/src/math/asinh.c index 4152dc39..0829f228 100644 --- a/src/math/asinh.c +++ b/src/math/asinh.c @@ -22,7 +22,7 @@ double asinh(double x) x = log1p(x + x*x/(sqrt(x*x+1)+1)); } else { /* |x| < 0x1p-26, raise inexact if x != 0 */ - FORCE_EVAL(x + 0x1p1000); + FORCE_EVAL(x + 0x1p120f); } return s ? -x : x; } |