summaryrefslogtreecommitdiff
path: root/print_render.c
diff options
context:
space:
mode:
Diffstat (limited to 'print_render.c')
-rw-r--r--print_render.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/print_render.c b/print_render.c
index f8d14e3..03a3867 100644
--- a/print_render.c
+++ b/print_render.c
@@ -386,12 +386,11 @@ PrintGlyphs(const unsigned char *buf, int n, const char *name)
{
const unsigned char *gids;
const unsigned char *glyphs;
- int i;
fprintf(stdout, "%s%20s:\n", Leader, name);
gids = buf;
glyphs = gids + 4 * n;
- for (i = 0; i < n; i++) {
+ for (int i = 0; i < n; i++) {
PrintField(gids, 0, 4, CARD32, "glyphid");
PrintField(glyphs, 0, 2, CARD16, "width");
PrintField(glyphs, 2, 2, CARD16, "height");