src/hotspot/share/logging/logFileOutput.cpp
changeset 51334 cc2c79d22508
parent 49984 aa3afd9bda87
child 52892 442d322bb6d8
--- a/src/hotspot/share/logging/logFileOutput.cpp	Wed Aug 08 15:31:06 2018 +0200
+++ b/src/hotspot/share/logging/logFileOutput.cpp	Wed Aug 08 15:31:07 2018 +0200
@@ -44,9 +44,9 @@
 
 LogFileOutput::LogFileOutput(const char* name)
     : LogFileStreamOutput(NULL), _name(os::strdup_check_oom(name, mtLogging)),
-      _file_name(NULL), _archive_name(NULL), _archive_name_len(0),
-      _rotate_size(DefaultFileSize), _file_count(DefaultFileCount),
-      _current_size(0), _current_file(0), _rotation_semaphore(1) {
+      _file_name(NULL), _archive_name(NULL), _current_file(0),
+      _file_count(DefaultFileCount), _archive_name_len(0),
+      _rotate_size(DefaultFileSize), _current_size(0), _rotation_semaphore(1) {
   assert(strstr(name, Prefix) == name, "invalid output name '%s': missing prefix: %s", name, Prefix);
   _file_name = make_file_name(name + strlen(Prefix), _pid_str, _vm_start_time_str);
 }