[svn:parrot] r43949 - trunk/src

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sun Feb 14 09:51:04 UTC 2010


Author: mikehh
Date: Sun Feb 14 09:51:04 2010
New Revision: 43949
URL: https://trac.parrot.org/parrot/changeset/43949

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

Modified:
   trunk/src/main.c

Modified: trunk/src/main.c
==============================================================================
--- trunk/src/main.c	Sun Feb 14 09:47:17 2010	(r43948)
+++ trunk/src/main.c	Sun Feb 14 09:51:04 2010	(r43949)
@@ -370,7 +370,7 @@
 
     int pos = 0;
     const char *arg;
-    while(pos < argc) {
+    while (pos < argc) {
         arg = argv[pos];
         if (STREQ(arg, "--gc")) {
             ++pos;


More information about the parrot-commits mailing list