8248643: Remove extra leading space in JDK-8240295 8u backport

Thu, 02 Jul 2020 16:51:57 -0400

author
zgu
date
Thu, 02 Jul 2020 16:51:57 -0400
changeset 9955
02b4fd2f9041
parent 9954
1f0cffcf648a
child 9956
d961c6fee216
child 9957
d2ec2776ad0c

8248643: Remove extra leading space in JDK-8240295 8u backport
Reviewed-by: kevinw, tschatzl

src/share/vm/runtime/os.cpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/runtime/os.cpp	Thu Jul 02 18:09:56 2020 +0000
     1.2 +++ b/src/share/vm/runtime/os.cpp	Thu Jul 02 16:51:57 2020 -0400
     1.3 @@ -880,7 +880,7 @@
     1.4    int elmins = (eltime - day_secs - hour_secs) / secs_per_min;
     1.5    int minute_secs = elmins * secs_per_min;
     1.6    int elsecs = (eltime - day_secs - hour_secs - minute_secs);
     1.7 -  st->print_cr(" elapsed time: %d.%06d seconds (%dd %dh %dm %ds)", eltime, eltimeFraction, eldays, elhours, elmins, elsecs);
     1.8 +  st->print_cr("elapsed time: %d.%06d seconds (%dd %dh %dm %ds)", eltime, eltimeFraction, eldays, elhours, elmins, elsecs);
     1.9  }
    1.10  
    1.11  // moved from debug.cpp (used to be find()) but still called from there

mercurial