[svn:parrot] r40402 - branches/pluggable_runcore/src/runcore

cotto at svn.parrot.org cotto at svn.parrot.org
Wed Aug 5 07:29:44 UTC 2009


Author: cotto
Date: Wed Aug  5 07:29:43 2009
New Revision: 40402
URL: https://trac.parrot.org/parrot/changeset/40402

Log:
[prof] fix a copy/paste bug

Modified:
   branches/pluggable_runcore/src/runcore/cores.c

Modified: branches/pluggable_runcore/src/runcore/cores.c
==============================================================================
--- branches/pluggable_runcore/src/runcore/cores.c	Wed Aug  5 07:17:29 2009	(r40401)
+++ branches/pluggable_runcore/src/runcore/cores.c	Wed Aug  5 07:29:43 2009	(r40402)
@@ -562,8 +562,8 @@
 
         if (!file_preop)  file_preop  = unknown_file;
         if (!file_postop) file_postop = unknown_file;
-        if (!sub_preop)   file_preop  = unknown_sub;
-        if (!sub_preop)   file_postop = unknown_sub;
+        if (!sub_preop)   sub_preop   = unknown_sub;
+        if (!sub_preop)   sub_postop  = unknown_sub;
 
         if (pc) {
             if (strcmp(file_preop, file_postop))


More information about the parrot-commits mailing list