Remove unrequired `else' from ttobjs.c::tt_get_sfnt_checksum().

This commit is contained in:
suzuki toshiya 2011-04-30 17:49:45 +09:00
parent 89208861ef
commit 10385e379e
1 changed files with 5 additions and 5 deletions

View File

@ -216,13 +216,13 @@
if ( face->dir_tables[i].CheckSum ) if ( face->dir_tables[i].CheckSum )
return face->dir_tables[i].CheckSum; return face->dir_tables[i].CheckSum;
else if ( !face->goto_table ) if ( !face->goto_table )
return 0; return 0;
else if ( face->goto_table( face, if ( face->goto_table( face,
face->dir_tables[i].Tag, face->dir_tables[i].Tag,
face->root.stream, face->root.stream,
NULL ) ) NULL ) )
return 0; return 0;
return (FT_ULong)tt_synth_sfnt_checksum( face->root.stream, return (FT_ULong)tt_synth_sfnt_checksum( face->root.stream,