mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-08 11:38:02 +02:00
* src/pfr/pfrgload.c (pfr_glyph_load_compound): Remove compiler
warning.
This commit is contained in:
parent
24fe618bde
commit
c0da523270
2 changed files with 6 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue