From 76f49d01ca4cedf9c2eb7c540fa70fb3b9806606 Mon Sep 17 00:00:00 2001 From: Hin-Tak Leung Date: Wed, 18 Nov 2009 23:55:54 +0000 Subject: adding two missing \n's to dprintf() git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@10348 a1074d23-0009-0410-80fe-cf8c14f379e6 --- pl/plfont.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pl') 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 */ -- cgit v1.2.3