diff options
author | 2017-01-20 23:19:07 +0000 | |
---|---|---|
committer | 2017-01-20 23:19:07 +0000 | |
commit | 93832e9776a5e931b4ce8f96e5c7b0a6071117af (patch) | |
tree | 4d3a84e5df6a9062ecc34af9ebeeef4291348473 /lib/libm/src | |
parent | Restore setting the visibility of __guard_local to hidden for better (diff) | |
download | wireguard-openbsd-93832e9776a5e931b4ce8f96e5c7b0a6071117af.tar.xz wireguard-openbsd-93832e9776a5e931b4ce8f96e5c7b0a6071117af.zip |
Implement gcc suggestion of extra parentheses. No functional change.
ok guenther@
Diffstat (limited to 'lib/libm/src')
-rw-r--r-- | lib/libm/src/ld80/s_nextafterl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libm/src/ld80/s_nextafterl.c b/lib/libm/src/ld80/s_nextafterl.c index 8d4f1009a86..d71e29cac98 100644 --- a/lib/libm/src/ld80/s_nextafterl.c +++ b/lib/libm/src/ld80/s_nextafterl.c @@ -33,8 +33,8 @@ nextafterl(long double x, long double y) ix = esx&0x7fff; /* |x| */ iy = esy&0x7fff; /* |y| */ - if (((ix==0x7fff)&&((hx&0x7fffffff|lx)!=0)) || /* x is nan */ - ((iy==0x7fff)&&((hy&0x7fffffff|ly)!=0))) /* y is nan */ + if (((ix==0x7fff)&&(((hx&0x7fffffff)|lx)!=0)) || /* x is nan */ + ((iy==0x7fff)&&(((hy&0x7fffffff)|ly)!=0))) /* y is nan */ return x+y; if(x==y) return y; /* x=y, return y */ if((ix|hx|lx)==0) { /* x == 0 */ |