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

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Jun 2 09:18:26 UTC 2009


Author: bacek
Date: Tue Jun  2 09:18:26 2009
New Revision: 39322
URL: https://trac.parrot.org/parrot/changeset/39322

Log:
[pmc] Fix typo in BigInt.

Modified:
   trunk/src/pmc/bigint.pmc

Modified: trunk/src/pmc/bigint.pmc
==============================================================================
--- trunk/src/pmc/bigint.pmc	Tue Jun  2 09:11:51 2009	(r39321)
+++ trunk/src/pmc/bigint.pmc	Tue Jun  2 09:18:26 2009	(r39322)
@@ -859,7 +859,7 @@
     }
 
     VTABLE PMC *add_int(INTVAL value, PMC *dest) {
-        dest pmc_new(INTERP, VTABLE_type(INTERP, SELF));
+        dest = pmc_new(INTERP, VTABLE_type(INTERP, SELF));
 
         bigint_add_bigint_int(INTERP, SELF, value, dest);
         return dest;


More information about the parrot-commits mailing list