Fix g++ 4.6 compilation.

* src/autofit/afhints.c (af_glyph_hints_dump_segments,
af_glyph_hints_dump_edges): Use cast.
This commit is contained in:
Werner Lemberg 2011-05-30 07:27:59 +02:00
parent 71cc1a83d8
commit 6b19fd5c14
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2011-05-30 Werner Lemberg <wl@gnu.org>
Fix g++ 4.6 compilation.
* src/autofit/afhints.c (af_glyph_hints_dump_segments,
af_glyph_hints_dump_edges): Use cast.
2011-05-30 Werner Lemberg <wl@gnu.org>
Fix gcc 4.6 compiler warnings.

View File

@ -267,7 +267,7 @@
AF_INDEX_NUM( seg->serif, segments ),
seg->height,
seg->height - ( seg->max_coord - seg->min_coord ),
af_edge_flags_to_string( seg->flags ) );
af_edge_flags_to_string( (AF_Edge_Flags)seg->flags ) );
}
printf( "\n" );
}
@ -380,7 +380,7 @@
edge->blue_edge ? 'y' : 'n',
edge->opos / 64.0,
edge->pos / 64.0,
af_edge_flags_to_string( edge->flags ) );
af_edge_flags_to_string( (AF_Edge_Flags)edge->flags ) );
}
printf( "\n" );
}