From b12b8c3ce458f972049270847a01565b104ecf21 Mon Sep 17 00:00:00 2001 From: suzuki toshiya Date: Sat, 1 Aug 2009 00:32:21 +0900 Subject: [PATCH] pfr: Fix a data type mismatching with its source. --- ChangeLog | 8 ++++++++ src/pfr/pfrtypes.h | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ed730815f..10529f925 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2009-07-31 suzuki toshiya + + pfr: Fix a data type mismatching with its source. + + * src/pfr/pfrtypes.h: The type of PFR_PhysFont->chars_offset + is extended from FT_UInt32 to FT_Offset, because it is + calculated with the pointer difference in pfr_phy_font_load(). + 2009-07-31 suzuki toshiya pfr: Fix a data type mismatching with its source. diff --git a/src/pfr/pfrtypes.h b/src/pfr/pfrtypes.h index 84149ea07..d90483923 100644 --- a/src/pfr/pfrtypes.h +++ b/src/pfr/pfrtypes.h @@ -252,7 +252,7 @@ FT_BEGIN_HEADER FT_UInt blue_scale; FT_UInt num_chars; - FT_UInt32 chars_offset; + FT_Offset chars_offset; PFR_Char chars; FT_UInt num_kern_pairs;