diff options
author | David Turner <david@freetype.org> | 2000-12-01 21:43:05 +0000 |
---|---|---|
committer | David Turner <david@freetype.org> | 2000-12-01 21:43:05 +0000 |
commit | efa80f2b43057caf3bcbeace84cf8c589cc08836 (patch) | |
tree | e4a737e96858e295bbfbcaa7bced2c1825ea7eb3 /src/cache/ftcglyph.c | |
parent | aaac8133dc7f210c2bd72c52b8a7fe4343e1aee5 (diff) |
fixed a few warnings with Borland C++
Diffstat (limited to 'src/cache/ftcglyph.c')
-rw-r--r-- | src/cache/ftcglyph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cache/ftcglyph.c b/src/cache/ftcglyph.c index a4b515ba..b378132e 100644 --- a/src/cache/ftcglyph.c +++ b/src/cache/ftcglyph.c @@ -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; |