From 75da37dcb17aacc0be6bb006683a84aa31155938 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 15 Nov 2012 18:39:23 -0800 Subject: [PATCH] Minor --- util/hb-ot-shape-closure.cc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/util/hb-ot-shape-closure.cc b/util/hb-ot-shape-closure.cc index 41517f232..fd9756bd7 100644 --- a/util/hb-ot-shape-closure.cc +++ b/util/hb-ot-shape-closure.cc @@ -74,18 +74,18 @@ struct shape_closure_consumer_t : option_group_t /* Print it out! */ bool first = true; for (hb_codepoint_t i = -1; hb_set_next (glyphs, &i);) - if (hb_set_has (glyphs, i)) { - if (first) - first = false; - else - printf (" "); - char glyph_name[32]; - if (show_glyph_names) { - hb_font_get_glyph_name (font, i, glyph_name, sizeof (glyph_name)); - printf ("%s", glyph_name); - } else - printf ("%u", i); - } + { + if (first) + first = false; + else + printf (" "); + char glyph_name[32]; + if (show_glyph_names) { + hb_font_get_glyph_name (font, i, glyph_name, sizeof (glyph_name)); + printf ("%s", glyph_name); + } else + printf ("%u", i); + } } void finish (const font_options_t *font_opts) {