diff options
author | kargl <kargl@FreeBSD.org> | 2012-09-23 18:13:46 +0000 |
---|---|---|
committer | kargl <kargl@FreeBSD.org> | 2012-09-23 18:13:46 +0000 |
commit | 1865dfeba6ad285723285187c6d951f5cd409b15 (patch) | |
tree | 07df755d4b96e24635ae4f46eecd0f8460612ddf /lib/msun | |
parent | 60992acc925d2baa3e16ea7acb8ca1dff5b2746a (diff) | |
download | FreeBSD-src-1865dfeba6ad285723285187c6d951f5cd409b15.zip FreeBSD-src-1865dfeba6ad285723285187c6d951f5cd409b15.tar.gz |
Fix whitespace issue.
Approved by: das (mentor, implicit)
Diffstat (limited to 'lib/msun')
-rw-r--r-- | lib/msun/ld80/s_expl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/ld80/s_expl.c b/lib/msun/ld80/s_expl.c index 444b9ee..b9cf4ae 100644 --- a/lib/msun/ld80/s_expl.c +++ b/lib/msun/ld80/s_expl.c @@ -251,7 +251,7 @@ expl(long double x) return (tiny * tiny); } else if (ix <= BIAS - 34) { /* |x| < 0x1p-33 */ /* includes pseudo-denormals */ - if (huge + x > 1.0L) /* trigger inexact iff x != 0 */ + if (huge + x > 1.0L) /* trigger inexact iff x != 0 */ return (1.0L + x); } |