[svn:parrot] r48450 - trunk/src/pmc
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Fri Aug 13 13:52:15 UTC 2010
Author: mikehh
Date: Fri Aug 13 13:52:14 2010
New Revision: 48450
URL: https://trac.parrot.org/parrot/changeset/48450
Log:
fix codetest failure - line length
Modified:
trunk/src/pmc/fixedstringarray.pmc
Modified: trunk/src/pmc/fixedstringarray.pmc
==============================================================================
--- trunk/src/pmc/fixedstringarray.pmc Fri Aug 13 09:50:29 2010 (r48449)
+++ trunk/src/pmc/fixedstringarray.pmc Fri Aug 13 13:52:14 2010 (r48450)
@@ -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