summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index 0a172a3965..0dd86f0532 100644
--- a/numeric.c
+++ b/numeric.c
@@ -331,7 +331,7 @@ flodivmod(x, y, divp, modp)
{
double z;
- modf(x/y, &);
+ modf(x/y, &z);
mod = x - z * x;
}
#endif