From a493763d881c6c4fb56350893c6a3b7faaa1493f Mon Sep 17 00:00:00 2001 From: mikehh Date: Fri, 27 Aug 2010 00:28:37 +0000 Subject: [PATCH] fix codetest failure - parentheses should not have space immediately 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 --- src/pmc/integer.pmc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pmc/integer.pmc b/src/pmc/integer.pmc index b08500f2ca..e0b95c066f 100644 --- a/src/pmc/integer.pmc +++ b/src/pmc/integer.pmc @@ -371,7 +371,7 @@ Adds C 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); } } -- 2.11.4.GIT