aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic/s_nexttowardf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/s_nexttowardf.c')
-rw-r--r--sysdeps/generic/s_nexttowardf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/s_nexttowardf.c b/sysdeps/generic/s_nexttowardf.c
index f4cf18d06e..56cc04c10b 100644
--- a/sysdeps/generic/s_nexttowardf.c
+++ b/sysdeps/generic/s_nexttowardf.c
@@ -39,8 +39,8 @@
ix = hx&0x7fffffff; /* |x| */
iy = hy&0x7fffffff; /* |y| */
- if(((ix>=0x7f800000) || /* x is nan */
- ((iy>=0x7ff00000)&&((iy-0x7ff00000)|ly)!=0)) /* y is nan */
+ if((ix>=0x7f800000) || /* x is nan */
+ ((iy>=0x7ff00000)&&((iy-0x7ff00000)|ly)!=0)) /* y is nan */
return x+y;
if((long double) x==y) return y; /* x=y, return y */
if(ix==0) { /* x == 0 */