type1: Fix a data type mismatching with its source.

This commit is contained in:
suzuki toshiya 2009-07-03 18:01:38 +09:00
parent dd045a511b
commit 88aae380f2
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
type1: Fix a data type mismatching with its source.
* include/freetype/internal/t1types.h: The type of
T1_Face->buildchar is matched with T1_Decorder->top.
2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
pfr: Fix a data type mismatching with its source.

View File

@ -230,7 +230,7 @@ FT_BEGIN_HEADER
/* undocumented, optional: has the same meaning as len_buildchar */
/* for Type 2 fonts; manipulated by othersubrs 19, 24, and 25 */
FT_UInt len_buildchar;
FT_Int* buildchar;
FT_Long* buildchar;
/* since version 2.1 - interface to PostScript hinter */
const void* pshinter;