8137260: fix warning after "8046148: JEP 158: Unified JVM Logging"

Reviewed-by: mlarsson, stuefe
This commit is contained in:
Goetz Lindenmaier 2015-09-28 12:57:47 +02:00
parent 65ce4b6e05
commit 9744fb1f05

View file

@ -216,11 +216,11 @@ char* LogFileOutput::make_file_name(const char* file_name,
// At least one of the place-holders were found in the file_name // At least one of the place-holders were found in the file_name
const char* first = ""; const char* first = "";
size_t first_pos = -1; size_t first_pos = SIZE_MAX;
size_t first_replace_len = 0; size_t first_replace_len = 0;
const char* second = ""; const char* second = "";
size_t second_pos = -1; size_t second_pos = SIZE_MAX;
size_t second_replace_len = 0; size_t second_replace_len = 0;
// If we found a %p, then setup our variables accordingly // If we found a %p, then setup our variables accordingly