diff options
author | Hin-Tak Leung <hintak_leung@yahoo.co.uk> | 2009-11-18 23:55:54 +0000 |
---|---|---|
committer | Hin-Tak Leung <hintak_leung@yahoo.co.uk> | 2009-11-18 23:55:54 +0000 |
commit | 76f49d01ca4cedf9c2eb7c540fa70fb3b9806606 (patch) | |
tree | 3028a394fc8d894bffbc6f9ca86d597147b2402b /pl | |
parent | c5d27485b1b14ffcbd1060236f6642a1ed236d93 (diff) |
adding two missing \n's to dprintf()
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@10348 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'pl')
-rw-r--r-- | pl/plfont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pl/plfont.c b/pl/plfont.c index 4ccfab771..3aa8053c1 100644 --- a/pl/plfont.c +++ b/pl/plfont.c @@ -353,7 +353,7 @@ pl_glyph_name(gs_font *pfont, gs_glyph glyph, gs_const_string *pstr) pstr->size = strlen(pstr->data); return 0; } else { - dprintf1("glyph index %lx out of range", (ulong)glyph); + dprintf1("glyph index %lx out of range\n", (ulong)glyph); return -1; } } @@ -385,7 +385,7 @@ pl_glyph_name(gs_font *pfont, gs_glyph glyph, gs_const_string *pstr) /* skip over the post header */ numGlyphs = u16(postp + 32); if ( glyph < 0 || glyph > numGlyphs - 1) { - dprintf1("glyph index %lx out of range", glyph); + dprintf1("glyph index %lx out of range\n", glyph); return -1; } /* glyph name index starts at post + 34 each entry is 2 bytes */ |