summaryrefslogtreecommitdiff
path: root/src/math/__log1pf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/__log1pf.h')
-rw-r--r--src/math/__log1pf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/__log1pf.h b/src/math/__log1pf.h
index 99492c5a..f2fbef29 100644
--- a/src/math/__log1pf.h
+++ b/src/math/__log1pf.h
@@ -22,7 +22,7 @@ Lg4 = 0xf89e26.0p-26; /* 0.24279078841 */
static inline float __log1pf(float f)
{
- float hfsq,s,z,R,w,t1,t2;
+ float_t hfsq,s,z,R,w,t1,t2;
s = f/(2.0f + f);
z = s*s;