summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mi/miarc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mi/miarc.c b/mi/miarc.c
index 5e854b329..2588ee48a 100644
--- a/mi/miarc.c
+++ b/mi/miarc.c
@@ -1711,7 +1711,7 @@ miGetArcPts(SppArcPtr parc, /* points to an arc */
y1 = y2;
}
/* adjust the last point */
- if (abs(parc->angle2) >= 360.0)
+ if (fabs(parc->angle2) >= 360.0)
poly[cpt + i - 1] = poly[0];
else {
poly[cpt + i - 1].x = (miDcos(st + et) * parc->width / 2.0 + xc);