[gs-cvs] rev 8697 - branches/mtrender/src

ray at ghostscript.com ray at ghostscript.com
Sun May 4 10:46:33 PDT 2008


Author: ray
Date: 2008-05-04 10:46:33 -0700 (Sun, 04 May 2008)
New Revision: 8697

Modified:
   branches/mtrender/src/gsmalloc.c
Log:
Fix compiler warning.


Modified: branches/mtrender/src/gsmalloc.c
===================================================================
--- branches/mtrender/src/gsmalloc.c	2008-05-04 17:38:30 UTC (rev 8696)
+++ branches/mtrender/src/gsmalloc.c	2008-05-04 17:46:33 UTC (rev 8697)
@@ -119,7 +119,7 @@
     mem->non_gc_memory = (gs_memory_t *)mem;
     /* Allocate a monitor to serialize access to structures within */
     mem->monitor = NULL;	/* prevent use during initial allocation */
-    mem->monitor = gx_monitor_alloc(mem);
+    mem->monitor = gx_monitor_alloc((gs_memory_t *)mem);
 
     return mem;
 }



More information about the gs-cvs mailing list