[svn:parrot] r47729 - trunk/src/pmc
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Sun Jun 20 13:26:07 UTC 2010
Author: mikehh
Date: Sun Jun 20 13:26:06 2010
New Revision: 47729
URL: https://trac.parrot.org/parrot/changeset/47729
Log:
fix codetest failure - parentheses should not have space immediately after the opening parenthesis nor immediately before the closing parenthesis
Modified:
trunk/src/pmc/packfilerawsegment.pmc
Modified: trunk/src/pmc/packfilerawsegment.pmc
==============================================================================
--- trunk/src/pmc/packfilerawsegment.pmc Sun Jun 20 13:19:40 2010 (r47728)
+++ trunk/src/pmc/packfilerawsegment.pmc Sun Jun 20 13:26:06 2010 (r47729)
@@ -189,8 +189,7 @@
VTABLE void set_pmc_keyed(PMC *key, PMC *value) {
SELF.set_integer_keyed_int(
VTABLE_get_integer(INTERP, key),
- VTABLE_get_integer(INTERP, value)
- );
+ VTABLE_get_integer(INTERP, value));
}
/*
More information about the parrot-commits
mailing list