changeset 14696:9c9f4dac029b

8023899: Typo in TraceCPUTime message Summary: Removed the comma Reviewed-by: pliden, tschatzl
author jwilhelm
date Fri, 31 Jan 2014 13:38:01 +0100
parents 2328dac1da27
children bac9ef65b71d
files src/share/vm/runtime/timer.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/runtime/timer.cpp	Fri Feb 28 09:30:20 2014 -0800
+++ b/src/share/vm/runtime/timer.cpp	Fri Jan 31 13:38:01 2014 +0100
@@ -194,7 +194,7 @@
         system_secs = system_time - _starting_system_time;
         real_secs = real_time - _starting_real_time;
 
-        _logfile->print(" [Times: user=%3.2f sys=%3.2f, real=%3.2f secs] ",
+        _logfile->print(" [Times: user=%3.2f sys=%3.2f real=%3.2f secs] ",
           user_secs, system_secs, real_secs);
 
       } else {