diff options
Diffstat (limited to 'src/math/floorl.c')
-rw-r--r-- | src/math/floorl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/floorl.c b/src/math/floorl.c index 08f6ba27..3901b060 100644 --- a/src/math/floorl.c +++ b/src/math/floorl.c @@ -97,6 +97,6 @@ long double floorl(long double x) if (huge + x > 0.0) u.bits.manl &= ~m; } - return (u.e); + return u.e; } #endif |