diff --git a/src/hb-shape-plan.cc b/src/hb-shape-plan.cc index acb589ad3..460d77b5f 100644 --- a/src/hb-shape-plan.cc +++ b/src/hb-shape-plan.cc @@ -108,7 +108,7 @@ hb_shape_plan_key_t::init (bool copy, } else { - const hb_shaper_pair_static_t *shapers = _hb_shapers_get (); + const hb_shaper_entry_t *shapers = _hb_shapers_get (); for (unsigned int i = 0; i < HB_SHAPERS_COUNT; i++) if (false) ; diff --git a/src/hb-shape.cc b/src/hb-shape.cc index 325be0f12..270da3d77 100644 --- a/src/hb-shape.cc +++ b/src/hb-shape.cc @@ -63,7 +63,7 @@ static struct hb_shaper_list_lazy_loader_t : hb_lazy_loader_t { - static inline hb_shaper_pair_static_t *create (void) + static inline hb_shaper_entry_t *create (void) { char *env = getenv ("HB_SHAPER_LIST"); if (!env || !*env) return nullptr; - hb_shaper_pair_static_t *shapers = (hb_shaper_pair_static_t *) calloc (1, sizeof (all_shapers)); + hb_shaper_entry_t *shapers = (hb_shaper_entry_t *) calloc (1, sizeof (all_shapers)); if (unlikely (!shapers)) return nullptr; @@ -68,7 +68,7 @@ static struct hb_shapers_lazy_loader_t : hb_lazy_loader_t