[svn:parrot] r48473 - branches/gc_threshold_tuning/src/pmc

chromatic at svn.parrot.org chromatic at svn.parrot.org
Sat Aug 14 00:32:35 UTC 2010


Author: chromatic
Date: Sat Aug 14 00:32:35 2010
New Revision: 48473
URL: https://trac.parrot.org/parrot/changeset/48473

Log:
fix codetest failure - line length

Modified:
   branches/gc_threshold_tuning/src/pmc/fixedstringarray.pmc

Modified: branches/gc_threshold_tuning/src/pmc/fixedstringarray.pmc
==============================================================================
--- branches/gc_threshold_tuning/src/pmc/fixedstringarray.pmc	Sat Aug 14 00:32:32 2010	(r48472)
+++ branches/gc_threshold_tuning/src/pmc/fixedstringarray.pmc	Sat Aug 14 00:32:35 2010	(r48473)
@@ -49,7 +49,8 @@
                 _("FixedStringArray: Cannot set array size to a negative number (%d)"), size);
         if (size) {
             SET_ATTR_size(INTERP, SELF, size);
-            SET_ATTR_str_array(INTERP, SELF, mem_gc_allocate_n_zeroed_typed(INTERP, size, STRING *));
+            SET_ATTR_str_array(INTERP,
+                               SELF, mem_gc_allocate_n_zeroed_typed(INTERP, size, STRING *));
             PObj_custom_mark_destroy_SETALL(SELF);
         }
     }


More information about the parrot-commits mailing list