8130036: Fix problems with imprecise C++ coding

Reviewed-by: dholmes, kbarrett
This commit is contained in:
Goetz Lindenmaier 2015-06-29 10:16:48 +02:00
parent 037958ba9a
commit bd938df14f
3 changed files with 9 additions and 9 deletions

View file

@ -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) {