mirror of
git://git.sv.nongnu.org/freetype/freetype2.git
synced 2026-01-19 04:52:09 +00:00
* src/tools/apinames.c (names_add): Remove unrequired cast of
`nm->hash` to int, which has been unrequired since eba2781a.
Fixes issue #1361.
This commit is contained in:
@@ -101,7 +101,7 @@ names_add( const char* name,
|
||||
{
|
||||
nm = the_names + nn;
|
||||
|
||||
if ( (int)nm->hash == h &&
|
||||
if ( nm->hash == h &&
|
||||
memcmp( name, nm->name, len ) == 0 &&
|
||||
nm->name[len] == 0 )
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user