ref: 49740490e1911580b00e5b86df895ba4683a2798
parent: 737634e5e422f9d1887d227b37c547829a31ded5
author: suzuki toshiya <[email protected]>
date: Fri Jul 31 20:32:22 EDT 2009
type1: Fix a data type mismatching with its source.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2009-07-31 suzuki toshiya <[email protected]>
+ 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-31 suzuki toshiya <[email protected]>
+
pfr: Fix a data type mismatching with its source.
* src/pfr/pfrtypes.h: The type of PFR_KernItem->offset
--- a/include/freetype/internal/t1types.h
+++ b/include/freetype/internal/t1types.h
@@ -230,7 +230,7 @@
/* 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;