[face] Minor rename a variable

This commit is contained in:
Behdad Esfahbod 2023-01-05 16:20:43 -07:00
parent 14ff747024
commit e8ac0ef2fd
1 changed files with 2 additions and 2 deletions

View File

@ -609,9 +609,9 @@ hb_face_collect_nominal_glyph_mapping (hb_face_t *face,
hb_map_t *mapping, hb_map_t *mapping,
hb_set_t *unicodes) hb_set_t *unicodes)
{ {
hb_set_t static_unicodes; hb_set_t stack_unicodes;
if (!unicodes) if (!unicodes)
unicodes = &static_unicodes; unicodes = &stack_unicodes;
face->table.cmap->collect_mapping (unicodes, mapping, face->get_num_glyphs ()); face->table.cmap->collect_mapping (unicodes, mapping, face->get_num_glyphs ());
} }
/** /**