[gs-cvs] rev 7010 - trunk/gs/src

leonardo at ghostscript.com leonardo at ghostscript.com
Tue Aug 29 08:38:38 PDT 2006


Author: leonardo
Date: 2006-08-29 08:38:38 -0700 (Tue, 29 Aug 2006)
New Revision: 7010

Modified:
   trunk/gs/src/strmio.c
Log:
Fix : MSVC compiler warning.

EXPECTED DIFFERENCES :

None.


Modified: trunk/gs/src/strmio.c
===================================================================
--- trunk/gs/src/strmio.c	2006-08-29 04:45:22 UTC (rev 7009)
+++ trunk/gs/src/strmio.c	2006-08-29 15:38:38 UTC (rev 7010)
@@ -64,7 +64,7 @@
     if (code < 0)
 	return NULL;
     s->position = 0;
-    code = ssetfilename(s, path, strlen(path));
+    code = ssetfilename(s, (const byte *)path, strlen(path));
     if (code < 0) {
 	/* Only error is e_VMerror */
 	sclose(s);



More information about the gs-cvs mailing list