Indent the frames in the "thread.GetStatus" frame listing.  Also put the same space after each thread listing for "thread backtrace all" as "thread backtrace 1 3 5"

git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@136052 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/Thread.cpp b/source/Target/Thread.cpp
index b1a3c15..267f1fc 100644
--- a/source/Target/Thread.cpp
+++ b/source/Target/Thread.cpp
@@ -1126,6 +1126,7 @@
         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 @@
                                                            source_lines_before,
                                                            source_lines_after);
         strm.IndentLess();
+        strm.IndentLess();
     }
     return num_frames_shown;
 }