summaryrefslogtreecommitdiff
path: root/genfontfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'genfontfile.c')
-rw-r--r--genfontfile.c2
1 files changed, 1 insertions, 1 deletions
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);