* src/pfr/pfrgload.c (pfr_glyph_curve_to): Avoid casting.

This commit is contained in:
Alexei Podtelezhnikov 2024-06-19 21:38:58 -04:00
parent 7a753c9653
commit 2b9fdec5fa
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@
tag[1] = FT_CURVE_TAG_CUBIC; tag[1] = FT_CURVE_TAG_CUBIC;
tag[2] = FT_CURVE_TAG_ON; tag[2] = FT_CURVE_TAG_ON;
outline->n_points = (FT_Short)( outline->n_points + 3 ); outline->n_points += 3;
} }
Exit: Exit: