about summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-12-22 07:48:53 -0800
committerKartik Agaram <vc@akkartik.com>2019-12-22 07:48:53 -0800
commitc69f33143c0460373aa77e100e3b3ca31a08ca10 (patch)
treeb47ca86dfecc33a932adbf9fa1d55852af2cf4eb /tools
parentc357b103d16e29ec0eb15c4a57d3906bb2edaf56 (diff)
downloadmu-c69f33143c0460373aa77e100e3b3ca31a08ca10.tar.gz
5819
Minor tweaks to stop wasting horizontal space in the trace.
Diffstat (limited to 'tools')
-rw-r--r--tools/browse_trace.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/browse_trace.cc b/tools/browse_trace.cc
index 85c010f9..f3d6416f 100644
--- a/tools/browse_trace.cc
+++ b/tools/browse_trace.cc
@@ -356,7 +356,7 @@ void render() {  // Trace_index -> Last_printed_row, screen
     else {
       out << "        ";
     }
-    out << std::setw(4) << curr_line.depth << ' ' << curr_line.label << ": " << curr_line.contents;
+    out << std::setw(2) << curr_line.depth << ' ' << curr_line.label << ": " << curr_line.contents;
     render_line(screen_row, out.str(), screen_row == Cursor_row);
   }
   // clear rest of screen