From fa5a9c7bae6d484107162641d16b1b38312ac225 Mon Sep 17 00:00:00 2001 From: "K. Handa" Date: Wed, 2 Sep 2015 19:11:05 +0900 Subject: [PATCH] Fix typo * ftfont.c (ftfont_drive_otf): otf_positioning_type_components_mask -> OTF_positioning_type_components_mask. --- src/ftfont.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ftfont.c b/src/ftfont.c index a110cd8a8d8..98058aca343 100644 --- a/src/ftfont.c +++ b/src/ftfont.c @@ -1936,7 +1936,7 @@ ftfont_drive_otf (MFLTFont *font, } #ifdef OTF_POSITIONING_TYPE_GET_FORMAT g->libotf_positioning_type - = otfg->positioning_type & otf_positioning_type_components_mask; + = otfg->positioning_type & OTF_positioning_type_components_mask; #endif for (i++, otfg++; (i < otf_gstring.used && otfg->f.index.from == otfg[-1].f.index.from); @@ -1963,7 +1963,7 @@ ftfont_drive_otf (MFLTFont *font, } #ifdef OTF_POSITIONING_TYPE_GET_FORMAT g->libotf_positioning_type - = otfg->positioning_type & otf_positioning_type_components_mask; + = otfg->positioning_type & OTF_positioning_type_components_mask; #endif out->used++; } -- 2.39.2