[svn:parrot] r45793 - trunk/src/gc

petdance at svn.parrot.org petdance at svn.parrot.org
Mon Apr 19 05:55:28 UTC 2010


Author: petdance
Date: Mon Apr 19 05:55:28 2010
New Revision: 45793
URL: https://trac.parrot.org/parrot/changeset/45793

Log:
shut down warning on unused interp

Modified:
   trunk/src/gc/alloc_resources.c

Modified: trunk/src/gc/alloc_resources.c
==============================================================================
--- trunk/src/gc/alloc_resources.c	Mon Apr 19 05:49:04 2010	(r45792)
+++ trunk/src/gc/alloc_resources.c	Mon Apr 19 05:55:28 2010	(r45793)
@@ -587,6 +587,8 @@
 #if RESOURCE_DEBUG
         if (Buffer_buflen(old_buf) >= RESOURCE_DEBUG_SIZE)
             debug_print_buf(interp, old_buf);
+#else
+        UNUSED(interp);
 #endif
 
         /* we can't perform the math all the time, because


More information about the parrot-commits mailing list