From e8ac0ef2fd3cacccaf3bd5dec8a9cab324d13467 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 5 Jan 2023 16:20:43 -0700 Subject: [PATCH] [face] Minor rename a variable --- src/hb-face.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-face.cc b/src/hb-face.cc index bfe130591..e79c0faae 100644 --- a/src/hb-face.cc +++ b/src/hb-face.cc @@ -609,9 +609,9 @@ hb_face_collect_nominal_glyph_mapping (hb_face_t *face, hb_map_t *mapping, hb_set_t *unicodes) { - hb_set_t static_unicodes; + hb_set_t stack_unicodes; if (!unicodes) - unicodes = &static_unicodes; + unicodes = &stack_unicodes; face->table.cmap->collect_mapping (unicodes, mapping, face->get_num_glyphs ()); } /**