Skip to content

Commit 0cae888

Browse files
committedJan 30, 2025
8349003: NativeCallStack::print_on() output is unreadable
Reviewed-by: stuefe, dholmes
1 parent fdfb68c commit 0cae888

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/utilities/nativeCallStack.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,6 @@ void NativeCallStack::print_on(outputStream* out) const {
113113
DEBUG_ONLY(assert_not_fake();)
114114
for (int i = 0; i < NMT_TrackingStackDepth && _stack[i] != nullptr; i++) {
115115
print_frame(out, _stack[i]);
116+
out->cr();
116117
}
117-
out->cr();
118118
}

0 commit comments

Comments
 (0)
Please sign in to comment.