src/share/vm/utilities/ostream.cpp

changeset 9327
f96fcd9e1e1b
parent 7476
c2844108a708
child 9448
73d689add964
child 9478
f3108e56b502
     1.1 --- a/src/share/vm/utilities/ostream.cpp	Tue Feb 23 18:58:36 2016 -0500
     1.2 +++ b/src/share/vm/utilities/ostream.cpp	Thu Jun 14 09:15:08 2018 -0700
     1.3 @@ -277,7 +277,7 @@
     1.4    size_t limit = (len + 16) / 16 * 16;
     1.5    for (size_t i = 0; i < limit; ++i) {
     1.6      if (i % 16 == 0) {
     1.7 -      indent().print(SIZE_FORMAT_HEX_W(07)":", i);
     1.8 +      indent().print(SIZE_FORMAT_HEX_W(07) ":", i);
     1.9      }
    1.10      if (i % 2 == 0) {
    1.11        print(" ");
    1.12 @@ -945,7 +945,7 @@
    1.13      // %%% Should be: jlong time_ms = os::start_time_milliseconds(), if
    1.14      // we ever get round to introduce that method on the os class
    1.15      xs->head("hotspot_log version='%d %d'"
    1.16 -             " process='%d' time_ms='"INT64_FORMAT"'",
    1.17 +             " process='%d' time_ms='" INT64_FORMAT "'",
    1.18               LOG_MAJOR_VERSION, LOG_MINOR_VERSION,
    1.19               os::current_process_id(), (int64_t)time_ms);
    1.20      // Write VM version header immediately.

mercurial