mirror of
git://git.savannah.gnu.org/freetype/freetype2.git
synced 2025-04-11 22:56:50 +02:00
Remove unrequired `else' from ttobjs.c::tt_get_sfnt_checksum().
This commit is contained in:
parent
89208861ef
commit
10385e379e
@ -216,13 +216,13 @@
|
||||
if ( face->dir_tables[i].CheckSum )
|
||||
return face->dir_tables[i].CheckSum;
|
||||
|
||||
else if ( !face->goto_table )
|
||||
if ( !face->goto_table )
|
||||
return 0;
|
||||
|
||||
else if ( face->goto_table( face,
|
||||
face->dir_tables[i].Tag,
|
||||
face->root.stream,
|
||||
NULL ) )
|
||||
if ( face->goto_table( face,
|
||||
face->dir_tables[i].Tag,
|
||||
face->root.stream,
|
||||
NULL ) )
|
||||
return 0;
|
||||
|
||||
return (FT_ULong)tt_synth_sfnt_checksum( face->root.stream,
|
||||
|
Loading…
x
Reference in New Issue
Block a user