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

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Sun May 17 02:25:44 UTC 2009


Author: whiteknight
Date: Sun May 17 02:25:44 2009
New Revision: 38859
URL: https://trac.parrot.org/parrot/changeset/38859

Log:
[gc] Fix a codingstd problem that kid51++ pointed out

Modified:
   trunk/src/gc/gc_ms.c

Modified: trunk/src/gc/gc_ms.c
==============================================================================
--- trunk/src/gc/gc_ms.c	Sun May 17 02:17:05 2009	(r38858)
+++ trunk/src/gc/gc_ms.c	Sun May 17 02:25:44 2009	(r38859)
@@ -247,6 +247,7 @@
 static void
 gc_ms_finalize(PARROT_INTERP, ARGIN(Arenas * const arena_base))
 {
+    ASSERT_ARGS(gc_ms_finalize);
     Parrot_gc_clear_live_bits(interp, arena_base->pmc_pool);
     Parrot_gc_clear_live_bits(interp, arena_base->constant_pmc_pool);
 


More information about the parrot-commits mailing list