[svn:parrot] r44881 - trunk/src/pmc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Thu Mar 11 18:18:21 UTC 2010


Author: mikehh
Date: Thu Mar 11 18:18:19 2010
New Revision: 44881
URL: https://trac.parrot.org/parrot/changeset/44881

Log:
fix codetest failure - there should be one space or a newline after a comma

Modified:
   trunk/src/pmc/fixedpmcarray.pmc

Modified: trunk/src/pmc/fixedpmcarray.pmc
==============================================================================
--- trunk/src/pmc/fixedpmcarray.pmc	Thu Mar 11 17:53:36 2010	(r44880)
+++ trunk/src/pmc/fixedpmcarray.pmc	Thu Mar 11 18:18:19 2010	(r44881)
@@ -92,7 +92,7 @@
 
         if (size < 0)
             Parrot_ex_throw_from_c_args(INTERP, NULL, EXCEPTION_OUT_OF_BOUNDS,
-                    _("FixedPMCArray: Cannot set array size to a negative number (%d)"),size);
+                    _("FixedPMCArray: Cannot set array size to a negative number (%d)"), size);
 
         SET_ATTR_size(INTERP, SELF, size);
         data           = mem_gc_allocate_n_typed(INTERP, size, PMC *);


More information about the parrot-commits mailing list