8023899: Typo in TraceCPUTime message
authorjwilhelm
Fri, 31 Jan 2014 13:38:01 +0100
changeset 23223 d38d6390733f
parent 22930 1c9f21f3fbf4
child 23224 b156569bc190
8023899: Typo in TraceCPUTime message Summary: Removed the comma Reviewed-by: pliden, tschatzl
hotspot/src/share/vm/runtime/timer.cpp
--- 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 {