forked from minhngoc25a/freetype2
* src/pfr/pfrgload.c (pfr_glyph_load_compound): Remove compiler
warning.
This commit is contained in:
parent
24fe618bde
commit
c0da523270
|
@ -1,3 +1,8 @@
|
|||
2007-12-04 Sean McBride <sean@rogue-research.com>
|
||||
|
||||
* src/pfr/pfrgload.c (pfr_glyph_load_compound): Remove compiler
|
||||
warning.
|
||||
|
||||
2007-11-20 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
Fix MacOS legacy font support by Masatake Yamato on Mac OS X. It is
|
||||
|
|
|
@ -595,7 +595,7 @@
|
|||
|
||||
if ( org_count + count > glyph->max_subs )
|
||||
{
|
||||
FT_UInt new_max = ( org_count + count + 3 ) & -4;
|
||||
FT_UInt new_max = ( org_count + count + 3 ) & (FT_UInt)-4;
|
||||
|
||||
|
||||
if ( FT_RENEW_ARRAY( glyph->subs, glyph->max_subs, new_max ) )
|
||||
|
|
Loading…
Reference in New Issue