* src/cache/ftcbasic.c (ftc_basic_family_get_count): Remove redundancy.

This commit is contained in:
Alexei Podtelezhnikov 2022-10-03 15:10:12 +00:00
parent de8f14a8e4
commit b93f20ab7a
1 changed files with 1 additions and 2 deletions

View File

@ -120,8 +120,7 @@
}
#endif
if ( !error )
result = (FT_UInt)face->num_glyphs;
result = (FT_UInt)face->num_glyphs;
return result;
}