summaryrefslogtreecommitdiff
path: root/src/math/modfl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/modfl.c')
-rw-r--r--src/math/modfl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/modfl.c b/src/math/modfl.c
index f6d62444..bbfcdb8a 100644
--- a/src/math/modfl.c
+++ b/src/math/modfl.c
@@ -40,7 +40,7 @@
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
long double modfl(long double x, long double *iptr)
{
- return modf(x, iptr);
+ return modf(x, (double *)iptr);
}
#elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384