[svn:parrot] r40968 - trunk/src/pmc
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Fri Sep 4 05:37:52 UTC 2009
Author: mikehh
Date: Fri Sep 4 05:37:52 2009
New Revision: 40968
URL: https://trac.parrot.org/parrot/changeset/40968
Log:
codetest failure - space after opening parenthesis
Modified:
trunk/src/pmc/string.pmc
Modified: trunk/src/pmc/string.pmc
==============================================================================
--- trunk/src/pmc/string.pmc Fri Sep 4 05:32:01 2009 (r40967)
+++ trunk/src/pmc/string.pmc Fri Sep 4 05:37:52 2009 (r40968)
@@ -744,7 +744,7 @@
Parrot_ex_throw_from_c_args(INTERP, NULL, EXCEPTION_INVALID_OPERATION,
"invalid conversion to int - bad base %d", base);
- while ( j < len) {
+ while (j < len) {
const unsigned char c = str[j];
int dig;
More information about the parrot-commits
mailing list