Replace FT_UNUSED with FC_UNUSED.
FreeType is trying to hide FT_UNUSED, so use FC_UNUSED instead.
This commit is contained in:
parent
a30e4db967
commit
4a1cf888cf
11
src/ftglue.c
11
src/ftglue.c
|
@ -229,13 +229,10 @@ ftglue_face_goto_table( FT_Face face,
|
||||||
|
|
||||||
for ( nn = 0; nn < count; nn++ )
|
for ( nn = 0; nn < count; nn++ )
|
||||||
{
|
{
|
||||||
FT_ULong tag = GET_ULong();
|
FT_ULong tag = GET_ULong();
|
||||||
FT_ULong checksum = GET_ULong();
|
FT_ULong checksum FC_UNUSED = GET_ULong();
|
||||||
FT_ULong start = GET_ULong();
|
FT_ULong start = GET_ULong();
|
||||||
FT_ULong size = GET_ULong();
|
FT_ULong size FC_UNUSED = GET_ULong();
|
||||||
|
|
||||||
FT_UNUSED(checksum);
|
|
||||||
FT_UNUSED(size);
|
|
||||||
|
|
||||||
if ( tag == the_tag )
|
if ( tag == the_tag )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue