[svn:parrot] r48690 - trunk/src

mikehh at svn.parrot.org mikehh at svn.parrot.org
Fri Aug 27 07:47:36 UTC 2010


Author: mikehh
Date: Fri Aug 27 07:47:36 2010
New Revision: 48690
URL: https://trac.parrot.org/parrot/changeset/48690

Log:
fix codetest failure - parentheses should not have space immediately
after the opening parenthesis nor immediately before the closing parenthesis

Modified:
   trunk/src/hash.c

Modified: trunk/src/hash.c
==============================================================================
--- trunk/src/hash.c	Fri Aug 27 07:09:35 2010	(r48689)
+++ trunk/src/hash.c	Fri Aug 27 07:47:36 2010	(r48690)
@@ -1086,8 +1086,7 @@
     UINTVAL i;
 
     parrot_hash_iterate(hash,
-        mem_gc_free(interp, _bucket->key);
-    );
+        mem_gc_free(interp, _bucket->key););
 
     parrot_hash_destroy(interp, hash);
 }


More information about the parrot-commits mailing list