[svn:parrot] r48681 - trunk/src/pmc

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Fri Aug 27 00:16:04 UTC 2010


Author: jkeenan
Date: Fri Aug 27 00:16:04 2010
New Revision: 48681
URL: https://trac.parrot.org/parrot/changeset/48681

Log:
[codingstd] Space needed after comma.  Reported by GeJ++.

Modified:
   trunk/src/pmc/integer.pmc

Modified: trunk/src/pmc/integer.pmc
==============================================================================
--- trunk/src/pmc/integer.pmc	Thu Aug 26 23:06:38 2010	(r48680)
+++ trunk/src/pmc/integer.pmc	Fri Aug 27 00:16:04 2010	(r48681)
@@ -371,7 +371,7 @@
         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);
         }
     }


More information about the parrot-commits mailing list