From 79d14cc2563d18eec79f3fe97c6aff989c4b2077 Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Thu, 16 Sep 2021 16:41:56 -0400 Subject: [PATCH] * src/cff/cffload.c (cff_fd_select_get): Remove casting. --- src/cff/cffload.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cff/cffload.c b/src/cff/cffload.c index 76e8fd4a2..9996fa70a 100644 --- a/src/cff/cffload.c +++ b/src/cff/cffload.c @@ -771,8 +771,7 @@ case 3: /* first, compare to the cache */ - if ( (FT_UInt)( glyph_index - fdselect->cache_first ) < - fdselect->cache_count ) + if ( glyph_index - fdselect->cache_first < fdselect->cache_count ) { fd = fdselect->cache_fd; break;