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

leonardo at ghostscript.com leonardo at ghostscript.com
Thu Oct 26 00:07:58 PDT 2006


Author: leonardo
Date: 2006-10-26 00:07:58 -0700 (Thu, 26 Oct 2006)
New Revision: 7126

Modified:
   trunk/gs/src/interp.c
Log:
Fix : MSVC warning in the last patch.

DETAILS :

Fixed an inaccurate type cast.

EXPECTED DIFFERENCES :

None.


Modified: trunk/gs/src/interp.c
===================================================================
--- trunk/gs/src/interp.c	2006-10-26 05:36:39 UTC (rev 7125)
+++ trunk/gs/src/interp.c	2006-10-26 07:07:58 UTC (rev 7126)
@@ -737,7 +737,7 @@
     code = name_ref(imemory_local, key, len, &key_name, 0);
     if (code < 0)
         return code;
-    code = gs_alloc_ref_array(imemory_local, &pair, a_readonly, 2, "gs_errorinfo_put_pair");
+    code = gs_alloc_ref_array(iimemory_local, &pair, a_readonly, 2, "gs_errorinfo_put_pair");
     if (code < 0)
         return code;
     aptr = pair.value.refs;



More information about the gs-cvs mailing list