8159917: Space character is missing in ClassLoaderData::print_value_on
Added missing space in ClassLoaderData::print_value_on Reviewed-by: coleenp
This commit is contained in:
parent
18a908de4a
commit
d3e6075c94
@ -1173,7 +1173,7 @@ void ClassLoaderData::print_value_on(outputStream* out) const {
|
||||
if (class_loader() == NULL) {
|
||||
out->print("NULL class_loader");
|
||||
} else {
|
||||
out->print("class loader " INTPTR_FORMAT, p2i(this));
|
||||
out->print("class loader " INTPTR_FORMAT " ", p2i(this));
|
||||
class_loader()->print_value_on(out);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user