Commit cae232d4f40552ab12960dc62610f7f08954365b

David Turner 2002-02-06T11:22:01

removing compiler warnings

diff --git a/src/sfnt/ttcmap.c b/src/sfnt/ttcmap.c
index 1a3fb17..2fd58cf 100644
--- a/src/sfnt/ttcmap.c
+++ b/src/sfnt/ttcmap.c
@@ -802,7 +802,7 @@
     return 0;
 
   Found:
-    if ( charCode < seg4->startCount )
+    if ( charCode < (FT_ULong) seg4->startCount )
       charCode = seg4->startCount;
 
     /* if the idRangeOffset is 0, all chars in the map exist */
@@ -887,7 +887,7 @@
     
     cmap6 = &cmap->c.cmap6;
     
-    if ( charCode < cmap6->firstCode )
+    if ( charCode < (FT_ULong) cmap6->firstCode )
       charCode = cmap6->firstCode;
     
     charCode -= cmap6->firstCode;