mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8137260: fix warning after "8046148: JEP 158: Unified JVM Logging"
Reviewed-by: mlarsson, stuefe
This commit is contained in:
parent
65ce4b6e05
commit
9744fb1f05
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
const char* first = "";
|
||||
size_t first_pos = -1;
|
||||
size_t first_pos = SIZE_MAX;
|
||||
size_t first_replace_len = 0;
|
||||
|
||||
const char* second = "";
|
||||
size_t second_pos = -1;
|
||||
size_t second_pos = SIZE_MAX;
|
||||
size_t second_replace_len = 0;
|
||||
|
||||
// If we found a %p, then setup our variables accordingly
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue