8023899: Typo in TraceCPUTime message
Summary: Removed the comma
Reviewed-by: pliden, tschatzl
--- a/hotspot/src/share/vm/runtime/timer.cpp Fri Feb 28 09:30:20 2014 -0800
+++ b/hotspot/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 {