aboutsummaryrefslogtreecommitdiff
path: root/math/w_scalblnf.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_scalblnf.c')
-rw-r--r--math/w_scalblnf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/w_scalblnf.c b/math/w_scalblnf.c
index de4dc47382..2a0b237352 100644
--- a/math/w_scalblnf.c
+++ b/math/w_scalblnf.c
@@ -24,7 +24,7 @@ float
__w_scalblnf (float x, long int n)
{
if (!isfinite (x) || x == 0.0f)
- return x;
+ return x + x;
x = __scalblnf (x, n);