Skip to content

Commit

Permalink
fix codetest failure - parentheses should not have space immediately
Browse files Browse the repository at this point in the history
after the opening parenthesis nor immediately before the closing parenthesis

git-svn-id: https://svn.parrot.org/parrot/trunk@48682 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
mikehh committed Aug 27, 2010
1 parent 3f49fde commit a07a310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pmc/integer.pmc
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ Adds C<value> to the integer and returns the result in C<*dest>.
else {
PMC *temp;
maybe_throw_overflow_error(INTERP);
temp = Parrot_pmc_new_init_int(INTERP, enum_class_BigInt, a );
temp = Parrot_pmc_new_init_int(INTERP, enum_class_BigInt, a);
return VTABLE_add_int(INTERP, temp, b, dest);
}
}
Expand Down

0 comments on commit a07a310

Please sign in to comment.