From 03b0f13e908eb61c1218db5e4478f0162fa98f5a Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 7 Dec 2012 16:16:44 -0500 Subject: fix trailing whitespace issues that crept in here and there --- src/math/sincosf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/math/sincosf.c') diff --git a/src/math/sincosf.c b/src/math/sincosf.c index fede5f23..5e3b9a41 100644 --- a/src/math/sincosf.c +++ b/src/math/sincosf.c @@ -48,7 +48,7 @@ void sincosf(float x, float *sin, float *cos) } /* |x| ~<= 5*pi/4 */ - if (ix <= 0x407b53d1) { + if (ix <= 0x407b53d1) { if (ix <= 0x4016cbe3) { /* |x| ~<= 3pi/4 */ if (hx < 0x80000000) { *sin = __cosdf(x - s1pio2); -- cgit v1.2.1