* ttgload.c (TT_Process_Composite_Glyph): Fix a signedness warning.

This commit is contained in:
Alexei Podtelezhnikov 2022-06-21 17:10:56 +00:00
parent 2848378be5
commit 9006ff7d10
1 changed files with 1 additions and 1 deletions

View File

@ -1407,7 +1407,7 @@
/* Some points are likely touched during execution of */
/* instructions on components. So let's untouch them. */
for ( i = 0; i < loader->zone.n_points - 4; i++ )
for ( i = 0; i < loader->zone.n_points - 4U; i++ )
loader->zone.tags[i] &= ~FT_CURVE_TAG_TOUCH_BOTH;
return TT_Hint_Glyph( loader, 1 );