fixed a few warnings with Borland C++

This commit is contained in:
David Turner 2000-12-01 21:43:05 +00:00
parent 5b3e03a2ae
commit 7a31c1f1da
2 changed files with 2 additions and 2 deletions

View File

@ -249,7 +249,7 @@
if ( !node )
break;
if ( node->glyph_index == glyph_index )
if ( (FT_UInt)node->glyph_index == glyph_index )
{
/* we found it! -- move glyph to start of the lists */
*pnode = node->gset_next;

View File

@ -293,7 +293,7 @@
FT_Fixed* blends = map->blend_points;
FT_Int before = -1, after = -1;
for ( p = 0; p < map->num_points; p++ )
for ( p = 0; p < (FT_UInt)map->num_points; p++ )
{
FT_Fixed p_design = designs[p];