From 025bbaa967ef69f0831bdf22fa621aaba476141f Mon Sep 17 00:00:00 2001 From: David Turner Date: Wed, 6 Feb 2002 11:22:01 +0000 Subject: removing compiler warnings --- src/sfnt/ttcmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sfnt/ttcmap.c b/src/sfnt/ttcmap.c index 1a3fb17f3..2fd58cf17 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; -- cgit v1.2.1