From 3927e409fb5c54dc32cdd016dbfc7a666ff78066 Mon Sep 17 00:00:00 2001 From: Thomas Stuefe Date: Wed, 20 Jan 2016 09:18:36 +0100 Subject: [PATCH] 8147509: [aix] Newlines missing in register info printout Reviewed-by: simonis --- hotspot/src/os/aix/vm/os_aix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotspot/src/os/aix/vm/os_aix.cpp b/hotspot/src/os/aix/vm/os_aix.cpp index 9f6ad76875a..a3f52f36ea9 100644 --- a/hotspot/src/os/aix/vm/os_aix.cpp +++ b/hotspot/src/os/aix/vm/os_aix.cpp @@ -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; }