From bd38f8c2e2e7382b212589c60b656f0bc7d8c87e Mon Sep 17 00:00:00 2001 From: suzuki toshiya Date: Fri, 3 Jul 2009 18:01:37 +0900 Subject: sfnt: Fix a data type mismatching with its source. --- ChangeLog | 7 +++++++ src/sfnt/sfobjs.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d87d132f5..c077df3aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-07-03 suzuki toshiya + + sfnt: Fix a data type mismatching with its source. + + * src/sfnt/sfobjs.c (sfnt_load_face): The type of + local `flags' is matched with FT_Face->face_flags. + 2009-07-03 suzuki toshiya psaux: Fix a data type mismatching with its source. diff --git a/src/sfnt/sfobjs.c b/src/sfnt/sfobjs.c index c826b92aa..cef3cd959 100644 --- a/src/sfnt/sfobjs.c +++ b/src/sfnt/sfobjs.c @@ -749,8 +749,8 @@ /* now set up root fields */ { - FT_Face root = &face->root; - FT_Int32 flags = root->face_flags; + FT_Face root = &face->root; + FT_Long flags = root->face_flags; /*********************************************************************/ -- cgit v1.2.1