pfr: Fix a data type mismatching with its source.
This commit is contained in:
parent
089e4a53e5
commit
dd045a511b
|
@ -1,3 +1,12 @@
|
|||
2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
pfr: Fix a data type mismatching with its source.
|
||||
|
||||
* src/pfr/pfrtypes.h: The type of PFR_KernItem->offset
|
||||
is extended from FT_UInt32 to FT_Offset, because it is
|
||||
calculated with the pointer difference, in
|
||||
pfr_extra_item_load_kerning_pairs().
|
||||
|
||||
2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
pfr: Fix a data type mismatching with its source.
|
||||
|
|
|
@ -200,7 +200,7 @@ FT_BEGIN_HEADER
|
|||
FT_Byte flags;
|
||||
FT_Short base_adj;
|
||||
FT_UInt pair_size;
|
||||
FT_UInt32 offset;
|
||||
FT_Offset offset;
|
||||
FT_UInt32 pair1;
|
||||
FT_UInt32 pair2;
|
||||
|
||||
|
|
Loading…
Reference in New Issue