summaryrefslogtreecommitdiff
path: root/src/base/ftoutln.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/ftoutln.c')
-rw-r--r--src/base/ftoutln.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/base/ftoutln.c b/src/base/ftoutln.c
index 794ddbc47..9ceb9cf1b 100644
--- a/src/base/ftoutln.c
+++ b/src/base/ftoutln.c
@@ -1088,9 +1088,8 @@
v_cur.x = points[n].x >> xshift;
v_cur.y = points[n].y >> yshift;
- area = OVERFLOW_ADD_LONG(
- area,
- ( v_cur.y - v_prev.y ) * ( v_cur.x + v_prev.x ) );
+ area = ADD_LONG( area,
+ ( v_cur.y - v_prev.y ) * ( v_cur.x + v_prev.x ) );
v_prev = v_cur;
}