diff options
author | kargl <kargl@FreeBSD.org> | 2013-08-28 16:59:55 +0000 |
---|---|---|
committer | kargl <kargl@FreeBSD.org> | 2013-08-28 16:59:55 +0000 |
commit | 0c40bd77afdf5a783614e79c12a317267d9aa6e1 (patch) | |
tree | 6b479378544e0bb2037f79e7c2859014bab2638d /lib | |
parent | 9e645a26a0c32f9f20e689faf85b7ab9a1a84aa3 (diff) | |
download | FreeBSD-src-0c40bd77afdf5a783614e79c12a317267d9aa6e1.zip FreeBSD-src-0c40bd77afdf5a783614e79c12a317267d9aa6e1.tar.gz |
* Whitespace.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/msun/src/s_erf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/s_erf.c b/lib/msun/src/s_erf.c index a4e91a3..854767b 100644 --- a/lib/msun/src/s_erf.c +++ b/lib/msun/src/s_erf.c @@ -201,7 +201,7 @@ erf(double x) if(ix < 0x3feb0000) { /* |x|<0.84375 */ if(ix < 0x3e300000) { /* |x|<2**-28 */ if (ix < 0x00800000) - return (8*x+efx8*x)/8; /* avoid spurious underflow */ + return (8*x+efx8*x)/8; /* avoid spurious underflow */ return x + efx*x; } z = x*x; |