[svn:parrot] r42044 - trunk/src/call

mikehh at svn.parrot.org mikehh at svn.parrot.org
Fri Oct 23 17:51:34 UTC 2009


Author: mikehh
Date: Fri Oct 23 17:51:34 2009
New Revision: 42044
URL: https://trac.parrot.org/parrot/changeset/42044

Log:
fix codetest failure - space between C keyword and subsequent open parenthesis

Modified:
   trunk/src/call/args.c

Modified: trunk/src/call/args.c
==============================================================================
--- trunk/src/call/args.c	Fri Oct 23 17:46:12 2009	(r42043)
+++ trunk/src/call/args.c	Fri Oct 23 17:51:34 2009	(r42044)
@@ -1673,7 +1673,7 @@
                                                             "flattened return on a non-array");
                             }
                             flat_elems = VTABLE_elements(interp, return_item);
-                            for(flat_pos = 0; flat_pos < flat_elems; flat_pos++) {
+                            for (flat_pos = 0; flat_pos < flat_elems; flat_pos++) {
                                 /* fetch an item out of the aggregate */
                                 VTABLE_push_pmc(interp, collect_positional,
                                         VTABLE_get_pmc_keyed_int(interp, return_item, flat_pos));


More information about the parrot-commits mailing list