summaryrefslogtreecommitdiff
path: root/pl/pllfont.c
diff options
context:
space:
mode:
authorHenry Stiles <henry.stiles@artifex.com>2011-03-11 07:10:56 +0000
committerHenry Stiles <henry.stiles@artifex.com>2011-03-11 07:10:56 +0000
commit0a7744c48ac93fd6bb6093a984b957671ffe8e08 (patch)
treea54bdc81a1b65ca96ce169cf0016f696f309e6da /pl/pllfont.c
parentf2197176ece890dc9595e53327c5b840164ebbb3 (diff)
Code to support Cyrillic, Greek, Arabic, Baltic symbol sets, see the
reference bug #690706 for details. Thanks to Josef Hinteregger for writing and testing the code to support the new sets. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@12278 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'pl/pllfont.c')
-rw-r--r--pl/pllfont.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pl/pllfont.c b/pl/pllfont.c
index 3bb560b17..3afed1fa2 100644
--- a/pl/pllfont.c
+++ b/pl/pllfont.c
@@ -168,8 +168,8 @@ check_resident_fonts(pl_dict_t *pfontdict, gs_memory_t *mem)
int j;
dprintf2("%s (entry %d) not found\n", resident_table[i].full_font_name, i);
dprintf("pxl unicode name:");
- for (j = 0;
- j < sizeof(resident_table[i].unicode_fontname);
+ for (j = 0;
+ j < countof(resident_table[i].unicode_fontname);
j++)
dprintf1("'%c'", resident_table[i].unicode_fontname[j]);
dprintf("\n");