From 7b97eb6e97d2156298bb06b0dfd13a12c68c525c Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 5 Feb 2006 13:55:58 +0100 Subject: Made all font and image data 'const' --- genfontfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'genfontfile.c') diff --git a/genfontfile.c b/genfontfile.c index 9189167e..9dc6bce4 100644 --- a/genfontfile.c +++ b/genfontfile.c @@ -371,7 +371,7 @@ main(int argc, char *argv[]) exit(1); } - printf("%s[][%d] = {\n", varname, fontinfo->max_ascent + fontinfo->max_descent + 2); + printf("static const %s[][%d] = {\n", varname, fontinfo->max_ascent + fontinfo->max_descent + 2); for (c = 32; c < 256; c++) { getMetric(fontinfo, c, &tgi); printGlyph(fontinfo, c); -- cgit v1.2.3