* src/cff/cffload.c (cff_fd_select_get): Remove casting.

This commit is contained in:
Alexei Podtelezhnikov 2021-09-16 16:41:56 -04:00
parent ae516e6a43
commit 79d14cc256
1 changed files with 1 additions and 2 deletions

View File

@ -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;