[face] Minor rename a variable
diff --git a/src/hb-face.cc b/src/hb-face.cc
index bfe1305..e79c0fa 100644
--- a/src/hb-face.cc
+++ b/src/hb-face.cc
@@ -609,9 +609,9 @@
 				       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 ());
 }
 /**