diff options
author | Igor Melichev <igor.melichev@artifex.com> | 2007-01-31 12:49:22 +0000 |
---|---|---|
committer | Igor Melichev <igor.melichev@artifex.com> | 2007-01-31 12:49:22 +0000 |
commit | f5e0036019b8bb2b7c9dd6221a6e48c694c599d0 (patch) | |
tree | 5e633b9799bb56d70079c02260a8b9eb217ec8f5 /gs/src/gdevpdfm.c | |
parent | 8b614fa2614096fde88b322a3f8d995032e6f6cf (diff) |
Fix : Cygwin/gcc warnings.
EXPECTED DIFFERENCES :
None.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@7659 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/src/gdevpdfm.c')
-rw-r--r-- | gs/src/gdevpdfm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gs/src/gdevpdfm.c b/gs/src/gdevpdfm.c index 6f5142e1d..3da05da78 100644 --- a/gs/src/gdevpdfm.c +++ b/gs/src/gdevpdfm.c @@ -761,7 +761,7 @@ pdfmark_write_outline(gx_device_pdf * pdev, pdf_outline_node_t * pnode, if (pnode->action != NULL) pnode->action->id = pnode->id; else { - eprintf1("pdfmark error: Outline node %d has no action or destination.\n", pnode->id); + eprintf1("pdfmark error: Outline node %d has no action or destination.\n", (int)pnode->id); code = gs_note_error(gs_error_undefined); } s = pdev->strm; |