summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2016-07-16 06:41:39 +0200
committerWerner Lemberg <wl@gnu.org>2016-07-16 06:41:39 +0200
commitaafff57428f16bfe4c96bc3b051240af9837bdc1 (patch)
treecfd4fb7c5f0b22e9bf5107e2b6eed0f47a06d7cf /src
parent86eb43a99437c455d54fccf1fa3aef2793d9ded8 (diff)
downloadfreetype2-aafff57428f16bfe4c96bc3b051240af9837bdc1.tar.gz
* src/autofit/aflatin.c (af_latin_hints_compute_segments): Thinko.
`max_pos' is always larger than `min_pos' so `FT_ABS' is not needed. Reported by Alexei.
Diffstat (limited to 'src')
-rw-r--r--src/autofit/aflatin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/autofit/aflatin.c b/src/autofit/aflatin.c
index fd4be9925..da52cc43f 100644
--- a/src/autofit/aflatin.c
+++ b/src/autofit/aflatin.c
@@ -1538,7 +1538,7 @@
segment->last = point;
segment->pos = (FT_Short)( ( min_pos + max_pos ) >> 1 );
- segment->delta = (FT_Short)FT_ABS( ( max_pos - min_pos ) >> 1 );
+ segment->delta = (FT_Short)( ( max_pos - min_pos ) >> 1 );
/* a segment is round if either its first or last point */
/* is a control point, and the length of the on points */