[gs-cvs] rev 8606 - trunk/gs/src
leonardo at ghostscript.com
leonardo at ghostscript.com
Sun Mar 23 00:50:43 PDT 2008
Author: leonardo
Date: 2008-03-23 00:50:43 -0700 (Sun, 23 Mar 2008)
New Revision: 8606
Modified:
trunk/gs/src/gdevvec.c
Log:
Fix (vector device): %pipe% IO device being opened as seekable (continued).
DETAILS :
Revision 8602 caused an MSVC warning, which is now fixed.
EXPECTED DIFFERENCES :
None.
Modified: trunk/gs/src/gdevvec.c
===================================================================
--- trunk/gs/src/gdevvec.c 2008-03-22 21:55:00 UTC (rev 8605)
+++ trunk/gs/src/gdevvec.c 2008-03-23 07:50:43 UTC (rev 8606)
@@ -300,7 +300,7 @@
gs_free_object(vdev->v_memory, vdev->strmbuf,
"vector_open(strmbuf)");
vdev->strmbuf = 0;
- gx_device_close_output_file(vdev, vdev->fname, vdev->file);
+ gx_device_close_output_file((gx_device *)vdev, vdev->fname, vdev->file);
vdev->file = 0;
return_error(gs_error_VMerror);
}
More information about the gs-cvs
mailing list