diff options
Diffstat (limited to 'lldb/source/Target/Thread.cpp')
-rw-r--r-- | lldb/source/Target/Thread.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp index b1a3c15b6b3..267f1fc8999 100644 --- a/lldb/source/Target/Thread.cpp +++ b/lldb/source/Target/Thread.cpp @@ -1126,6 +1126,7 @@ Thread::GetStatus (Stream &strm, uint32_t start_frame, uint32_t num_frames, uint const bool show_frame_info = true; const uint32_t source_lines_before = 3; const uint32_t source_lines_after = 3; + strm.IndentMore (); num_frames_shown = GetStackFrameList ().GetStatus (strm, start_frame, num_frames, @@ -1134,6 +1135,7 @@ Thread::GetStatus (Stream &strm, uint32_t start_frame, uint32_t num_frames, uint source_lines_before, source_lines_after); strm.IndentLess(); + strm.IndentLess(); } return num_frames_shown; } |