mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8130036: Fix problems with imprecise C++ coding
Reviewed-by: dholmes, kbarrett
This commit is contained in:
parent
037958ba9a
commit
bd938df14f
3 changed files with 9 additions and 9 deletions
|
@ -411,9 +411,10 @@ void VMError::report(outputStream* st) {
|
|||
}
|
||||
st->cr();
|
||||
} else {
|
||||
if (_message != NULL)
|
||||
if (_message != NULL) {
|
||||
st->print("# ");
|
||||
st->print_cr("%s", _message);
|
||||
}
|
||||
}
|
||||
// In error file give some solutions
|
||||
if (_verbose) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue