Replace FT_UNUSED with FC_UNUSED.

FreeType is trying to hide FT_UNUSED, so use FC_UNUSED instead.
This commit is contained in:
Ben Wagner 2020-07-06 17:28:19 -04:00
parent a30e4db967
commit 4a1cf888cf
1 changed files with 4 additions and 7 deletions

View File

@ -229,13 +229,10 @@ ftglue_face_goto_table( FT_Face face,
for ( nn = 0; nn < count; nn++ )
{
FT_ULong tag = GET_ULong();
FT_ULong checksum = GET_ULong();
FT_ULong start = GET_ULong();
FT_ULong size = GET_ULong();
FT_UNUSED(checksum);
FT_UNUSED(size);
FT_ULong tag = GET_ULong();
FT_ULong checksum FC_UNUSED = GET_ULong();
FT_ULong start = GET_ULong();
FT_ULong size FC_UNUSED = GET_ULong();
if ( tag == the_tag )
{