summaryrefslogtreecommitdiff
path: root/src/math/__log1p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/__log1p.h')
-rw-r--r--src/math/__log1p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/__log1p.h b/src/math/__log1p.h
index ec2c77b9..57187115 100644
--- a/src/math/__log1p.h
+++ b/src/math/__log1p.h
@@ -81,7 +81,7 @@ Lg7 = 1.479819860511658591e-01; /* 3FC2F112 DF3E5244 */
*/
static inline double __log1p(double f)
{
- double hfsq,s,z,R,w,t1,t2;
+ double_t hfsq,s,z,R,w,t1,t2;
s = f/(2.0+f);
z = s*s;