* src/pcf/pcfread.c (pcf_read_TOC): Remove casting.

This commit is contained in:
Alexei Podtelezhnikov 2021-09-16 16:39:23 -04:00
parent 801b7540dc
commit ae516e6a43
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ THE SOFTWARE.
{
for ( j = 0; j < sizeof ( tableNames ) / sizeof ( tableNames[0] );
j++ )
if ( tables[i].type == (FT_UInt)( 1 << j ) )
if ( tables[i].type == 1UL << j )
name = tableNames[j];
FT_TRACE4(( " %d: type=%s, format=0x%lX,"