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

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sat Oct 24 03:39:57 UTC 2009


Author: mikehh
Date: Sat Oct 24 03:39:55 2009
New Revision: 42068
URL: https://trac.parrot.org/parrot/changeset/42068

Log:
fix codetest failure - there should be at least one space between a C keyword and any subsequent open parenthesis

Modified:
   trunk/src/pmc/callsignaturereturns.pmc

Modified: trunk/src/pmc/callsignaturereturns.pmc
==============================================================================
--- trunk/src/pmc/callsignaturereturns.pmc	Sat Oct 24 03:36:25 2009	(r42067)
+++ trunk/src/pmc/callsignaturereturns.pmc	Sat Oct 24 03:39:55 2009	(r42068)
@@ -116,7 +116,7 @@
             if (cur == 8) {
                 old_values = values;
                 values = (void **) mem_allocate_n_typed(8, void *);
-                memcpy(values, old_values, 8 * sizeof(void *));
+                memcpy(values, old_values, 8 * sizeof (void *));
             }
 
             if (cur < 8192)


More information about the parrot-commits mailing list