8147509: [aix] Newlines missing in register info printout

Reviewed-by: simonis
This commit is contained in:
Thomas Stuefe 2016-01-20 09:18:36 +01:00
parent 84ae91a490
commit 3927e409fb

View File

@ -3742,7 +3742,7 @@ bool os::find(address addr, outputStream* st) {
loaded_module_t lm;
if (LoadedLibraries::find_for_text_address(addr, &lm) != NULL ||
LoadedLibraries::find_for_data_address(addr, &lm) != NULL) {
st->print("%s", lm.path);
st->print_cr("%s", lm.path);
return true;
}