[svn:parrot] r44874 - trunk/src/pmc
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Thu Mar 11 09:52:26 UTC 2010
Author: mikehh
Date: Thu Mar 11 09:52:25 2010
New Revision: 44874
URL: https://trac.parrot.org/parrot/changeset/44874
Log:
fix codetest failure - space before closing parenthesis
Modified:
trunk/src/pmc/fixedstringarray.pmc
Modified: trunk/src/pmc/fixedstringarray.pmc
==============================================================================
--- trunk/src/pmc/fixedstringarray.pmc Thu Mar 11 09:44:52 2010 (r44873)
+++ trunk/src/pmc/fixedstringarray.pmc Thu Mar 11 09:52:25 2010 (r44874)
@@ -56,7 +56,7 @@
VTABLE void init_int(INTVAL size) {
if (size < 0)
Parrot_ex_throw_from_c_args(interp, NULL, EXCEPTION_OUT_OF_BOUNDS,
- "Cannot instantiate PMC with negative size %d", size );
+ "Cannot instantiate PMC with negative size %d", size);
SET_ATTR_size(INTERP, SELF, size);
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