[subset] Move variable declaration out of loop.
diff --git a/test/api/test-subset-glyf.c b/test/api/test-subset-glyf.c
index d6f6dde..e4440e0 100644
--- a/test/api/test-subset-glyf.c
+++ b/test/api/test-subset-glyf.c
@@ -232,10 +232,10 @@
     'A', 'B', 'C', 'D', 'E', 'X', 'Y', 'Z', '1', '2',
     '3', '@', '_', '%', '&', ')', '*', '$', '!'
   };
-  for (unsigned int i = 0; i < sizeof (text) / sizeof (hb_codepoint_t); i++)
+  unsigned int i;
+  for (i = 0; i < sizeof (text) / sizeof (hb_codepoint_t); i++)
   {
     hb_set_add (codepoints, text[i]);
-    // hb_set_add (codepoints_drop_hints, text[i]);
   }
 
   hb_subset_input_t *input = hb_subset_test_create_input (codepoints);