[gs-cvs] rev 7661 - trunk/gs/src
leonardo at ghostscript.com
leonardo at ghostscript.com
Wed Jan 31 12:20:51 PST 2007
Author: leonardo
Date: 2007-01-31 12:20:51 -0800 (Wed, 31 Jan 2007)
New Revision: 7661
Modified:
trunk/gs/src/gdevpdfm.c
Log:
Fix : gcc warnings.
DETAILS :
The revision 7659 change appears imperfect,
because it caused a new warning.
Thanks for Peter L. Deutsch for pointing this out.
EXPECTED DIFFERENCES :
None.
Modified: trunk/gs/src/gdevpdfm.c
===================================================================
--- trunk/gs/src/gdevpdfm.c 2007-01-31 18:27:26 UTC (rev 7660)
+++ trunk/gs/src/gdevpdfm.c 2007-01-31 20:20:51 UTC (rev 7661)
@@ -761,7 +761,7 @@
if (pnode->action != NULL)
pnode->action->id = pnode->id;
else {
- eprintf1("pdfmark error: Outline node %d has no action or destination.\n", (int)pnode->id);
+ eprintf1("pdfmark error: Outline node %ld has no action or destination.\n", pnode->id);
code = gs_note_error(gs_error_undefined);
}
s = pdev->strm;
More information about the gs-cvs
mailing list