diff options
Diffstat (limited to 'newlib/libm/math/e_cosh.c')
-rw-r--r-- | newlib/libm/math/e_cosh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libm/math/e_cosh.c b/newlib/libm/math/e_cosh.c index 54ca1fb95..a6310bd07 100644 --- a/newlib/libm/math/e_cosh.c +++ b/newlib/libm/math/e_cosh.c @@ -80,7 +80,7 @@ static double one = 1.0, half=0.5, huge = 1.0e300; /* |x| in [log(maxdouble), overflowthresold] */ GET_LOW_WORD(lx,x); if (ix<0x408633CE || - (ix==0x408633ce)&&(lx<=(__uint32_t)0x8fb9f87d)) { + (ix==0x408633ce && lx<=(__uint32_t)0x8fb9f87d)) { w = __ieee754_exp(half*fabs(x)); t = half*w; return t*w; |