[svn:parrot] r42112 - trunk/src/runcore

NotFound at svn.parrot.org NotFound at svn.parrot.org
Mon Oct 26 16:24:29 UTC 2009


Author: NotFound
Date: Mon Oct 26 16:24:29 2009
New Revision: 42112
URL: https://trac.parrot.org/parrot/changeset/42112

Log:
[core] fix trace keys, TT #1149

Modified:
   trunk/src/runcore/trace.c

Modified: trunk/src/runcore/trace.c
==============================================================================
--- trunk/src/runcore/trace.c	Mon Oct 26 15:23:01 2009	(r42111)
+++ trunk/src/runcore/trace.c	Mon Oct 26 16:24:29 2009	(r42112)
@@ -245,7 +245,7 @@
         }
 
         if (key) {
-            key = (PMC *)PMC_data(key);
+            key = (PMC *)VTABLE_shift_pmc(interp, key);
             if (key)
                 len += Parrot_io_eprintf(debugger, ";");
         }


More information about the parrot-commits mailing list