sfnt: Fix a data type mismatching with its source.

int-not32-changes
suzuki toshiya 16 years ago
parent 018a2e5f3f
commit bd38f8c2e2
  1. 7
      ChangeLog
  2. 4
      src/sfnt/sfobjs.c

@ -1,3 +1,10 @@
2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
sfnt: Fix a data type mismatching with its source.
* src/sfnt/sfobjs.c (sfnt_load_face): The type of
local `flags' is matched with FT_Face->face_flags.
2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
psaux: Fix a data type mismatching with its source.

@ -749,8 +749,8 @@
/* now set up root fields */
{
FT_Face root = &face->root;
FT_Int32 flags = root->face_flags;
FT_Face root = &face->root;
FT_Long flags = root->face_flags;
/*********************************************************************/

Loading…
Cancel
Save