[svn:parrot] r43787 - branches/gc_encapsulate_part1/src/gc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Mon Feb 8 16:25:51 UTC 2010


Author: mikehh
Date: Mon Feb  8 16:25:48 2010
New Revision: 43787
URL: https://trac.parrot.org/parrot/changeset/43787

Log:
fix codetest failure - line length

Modified:
   branches/gc_encapsulate_part1/src/gc/api.c

Modified: branches/gc_encapsulate_part1/src/gc/api.c
==============================================================================
--- branches/gc_encapsulate_part1/src/gc/api.c	Mon Feb  8 14:18:59 2010	(r43786)
+++ branches/gc_encapsulate_part1/src/gc/api.c	Mon Feb  8 16:25:48 2010	(r43787)
@@ -350,7 +350,8 @@
 
     initialize_var_size_pools(interp, interp->mem_pools);
     initialize_fixed_size_pools(interp, interp->mem_pools);
-    Parrot_gc_initialize_fixed_size_pools(interp, interp->mem_pools, GC_NUM_INITIAL_FIXED_SIZE_POOLS);
+    Parrot_gc_initialize_fixed_size_pools(interp, interp->mem_pools,
+                                          GC_NUM_INITIAL_FIXED_SIZE_POOLS);
 }
 
 /*


More information about the parrot-commits mailing list