* src/pfr/pfrgload.c (pfr_glyph_curve_to): Avoid casting.
This commit is contained in:
parent
7a753c9653
commit
2b9fdec5fa
|
@ -189,7 +189,7 @@
|
|||
tag[1] = FT_CURVE_TAG_CUBIC;
|
||||
tag[2] = FT_CURVE_TAG_ON;
|
||||
|
||||
outline->n_points = (FT_Short)( outline->n_points + 3 );
|
||||
outline->n_points += 3;
|
||||
}
|
||||
|
||||
Exit:
|
||||
|
|
Loading…
Reference in New Issue