From e826e6be2bdf4e0776530298343019913f40737d Mon Sep 17 00:00:00 2001 From: Steve Kargl Date: Wed, 28 Aug 2013 16:59:55 +0000 Subject: [PATCH] * Whitespace. --- lib/msun/src/s_erf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/msun/src/s_erf.c b/lib/msun/src/s_erf.c index a4e91a396a34..854767bc913f 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;