[gs-cvs] rev 8702 - branches/mtrender/src
ray at ghostscript.com
ray at ghostscript.com
Mon May 5 11:14:59 PDT 2008
Author: ray
Date: 2008-05-05 11:14:58 -0700 (Mon, 05 May 2008)
New Revision: 8702
Modified:
branches/mtrender/src/gsmchunk.c
Log:
Fix gcc warnings (unused variables) in DEBUG code.
Modified: branches/mtrender/src/gsmchunk.c
===================================================================
--- branches/mtrender/src/gsmchunk.c 2008-05-05 18:14:00 UTC (rev 8701)
+++ branches/mtrender/src/gsmchunk.c 2008-05-05 18:14:58 UTC (rev 8702)
@@ -14,6 +14,7 @@
/* $Id:$ */
/* chunk consolidating wrapper on a base memory allocator */
+#include "memory_.h"
#include "gx.h"
#include "gsstype.h"
#include "gserrors.h"
@@ -693,7 +694,7 @@
{
int code;
gs_memory_t *cmem;
- byte *obj1, *obj2, *obj3, *obj4, *obj5, *obj6, *obj7, *obj8, *obj9;
+ byte *obj1, *obj2, *obj3, *obj4, *obj5, *obj6, *obj7;
if ((code = gs_memory_chunk_wrap(&cmem, mem )) < 0) {
dprintf1("chunk_wrap returned error code: %d\n", code);
More information about the gs-cvs
mailing list