From b93f843720df6071e0654fb2b34346f557c7c1ce Mon Sep 17 00:00:00 2001 From: handa Date: Wed, 18 Nov 2009 06:45:48 +0000 Subject: [PATCH] Fix previous change. --- example/otfview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/otfview.c b/example/otfview.c index 14604ed..1c68f40 100644 --- a/example/otfview.c +++ b/example/otfview.c @@ -538,7 +538,7 @@ update_seq_area () for (i = 1, x = 4; i < gstring.used; i++, x += 5) sprintf (buf + x, " %04X", gstring.glyphs[i].glyph_id); while (x < size) - buf[x] = ' '; + buf[x++] = ' '; buf[x] = '\0'; XtSetArg (arg[0], XtNlabel, buf); XtSetValues (code_list, arg, 1); -- 1.7.10.4