summaryrefslogtreecommitdiff
path: root/src/math/coshf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/coshf.c')
-rw-r--r--src/math/coshf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/coshf.c b/src/math/coshf.c
index b09f2ee5..e739cff9 100644
--- a/src/math/coshf.c
+++ b/src/math/coshf.c
@@ -28,6 +28,6 @@ float coshf(float x)
}
/* |x| > log(FLT_MAX) or nan */
- t = __expo2f(x);
+ t = __expo2f(x, 1.0f);
return t;
}