8147509: [aix] Newlines missing in register info printout
authorstuefe
Wed, 20 Jan 2016 09:18:36 +0100
changeset 35533 34c4de098f2b
parent 35532 929dfc251a28
child 35534 411cbe6b6bd5
8147509: [aix] Newlines missing in register info printout Reviewed-by: simonis
hotspot/src/os/aix/vm/os_aix.cpp
--- a/hotspot/src/os/aix/vm/os_aix.cpp	Tue Jan 19 09:39:28 2016 +0100
+++ b/hotspot/src/os/aix/vm/os_aix.cpp	Wed Jan 20 09:18:36 2016 +0100
@@ -3742,7 +3742,7 @@
   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;
   }