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

leonardo at ghostscript.com leonardo at ghostscript.com
Fri Oct 27 04:49:01 PDT 2006


Author: leonardo
Date: 2006-10-27 04:49:01 -0700 (Fri, 27 Oct 2006)
New Revision: 7132

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

DETAILS :

char** --> char*
Don't know how it compiles with various compilers.
In any case it was definitely wrong.

EXPECTED DIFFERENCES :

None.


Modified: trunk/gs/src/gsiorom.c
===================================================================
--- trunk/gs/src/gsiorom.c	2006-10-27 00:04:16 UTC (rev 7131)
+++ trunk/gs/src/gsiorom.c	2006-10-27 11:49:01 UTC (rev 7132)
@@ -269,7 +269,7 @@
     /* we get a buffer that is larger than what we need for decompression */
     /* we need extra space since some filters may leave data in the buffer when */
     /* calling 'read_process' */
-    code = file_prepare_stream(fname, namelen, access, ROMFS_BLOCKSIZE+256, ps, &fmode, mem);
+    code = file_prepare_stream(fname, namelen, access, ROMFS_BLOCKSIZE+256, ps, fmode, mem);
     if (code < 0) 
 	return code;
     sread_block(*ps, (*ps)->cbuf, (*ps)->cbsize, node);



More information about the gs-cvs mailing list