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

cotto at svn.parrot.org cotto at svn.parrot.org
Thu Sep 3 02:20:49 UTC 2009


Author: cotto
Date: Thu Sep  3 02:20:48 2009
New Revision: 40941
URL: https://trac.parrot.org/parrot/changeset/40941

Log:
[nits] minor code tidying

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

Modified: branches/pluggable_runcore/src/runcore/cores.c
==============================================================================
--- branches/pluggable_runcore/src/runcore/cores.c	Thu Sep  3 02:19:25 2009	(r40940)
+++ branches/pluggable_runcore/src/runcore/cores.c	Thu Sep  3 02:20:48 2009	(r40941)
@@ -1138,9 +1138,7 @@
         fprintf(runcore->profile_fd, "VERSION:1\n");
         fprintf(runcore->profile_fd, "CLI:%s %s\n", exec_cstr, command_line_cstr);
         fprintf(runcore->profile_fd, "CS:{ns:%s;%s}{file:%s}{sub:0x%X}{ctx:0x%X}\n",
-                ns_cstr,
-                sub_cstr,
-                filename_cstr,
+                ns_cstr, sub_cstr, filename_cstr,
                 (unsigned int) CONTEXT(interp)->current_sub,
                 (unsigned int) CONTEXT(interp));
 
@@ -1149,6 +1147,7 @@
         mem_sys_free(ns_cstr);
         mem_sys_free(sub_cstr);
         mem_sys_free(filename_cstr);
+
         Profiling_first_op_CLEAR(runcore);
     }
 


More information about the parrot-commits mailing list