summaryrefslogtreecommitdiff
path: root/libm/float_wrappers.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-10-30 20:19:20 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-10-30 20:19:20 +0200
commit8f6064f5ce689226a528026f196a10c5ba7500d5 (patch)
tree312f37cb3a08cb6551ec045e08a5edf38a7c510a /libm/float_wrappers.c
parent1631ebd26712b2f5f41285c8cada819bebed294c (diff)
libm: fix testuite failure in modf
This error is gone: Failure: Test: modf (NaN, &x) == NaN Result: is: -0.00000000000000000000e+00 -0 should be: nan nan Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libm/float_wrappers.c')
-rw-r--r--libm/float_wrappers.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libm/float_wrappers.c b/libm/float_wrappers.c
index a13aac93a..82b7963e1 100644
--- a/libm/float_wrappers.c
+++ b/libm/float_wrappers.c
@@ -293,10 +293,9 @@ long_WRAPPER1(lround)
float modff (float x, float *iptr)
{
double y, result;
- result = modf ( x, &y );
+ result = modf( x, &y );
*iptr = (float)y;
return (float) result;
-
}
#endif