pfr: Fix a data type mismatching with its source.
This commit is contained in:
parent
1cf2cd8758
commit
1e597e5e86
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
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_PhyFont->bct_offset
|
||||
is extended from FT_UInt32 to FT_Long, because it is
|
||||
loaded by FT_STREAM_POS() in pfr_phy_font_load().
|
||||
|
||||
2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
smooth: Improve the format in debug message.
|
||||
|
|
|
@ -260,7 +260,7 @@ FT_BEGIN_HEADER
|
|||
PFR_KernItem* kern_items_tail;
|
||||
|
||||
/* not part of the spec, but used during load */
|
||||
FT_UInt32 bct_offset;
|
||||
FT_Long bct_offset;
|
||||
FT_Byte* cursor;
|
||||
|
||||
} PFR_PhyFontRec, *PFR_PhyFont;
|
||||
|
|
Loading…
Add table
Reference in a new issue