about summary refs log tree commit diff stats
path: root/tools/browse_trace.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-12-21 22:38:20 -0800
committerKartik Agaram <vc@akkartik.com>2019-12-21 22:42:08 -0800
commit7d02b3a73c8329d33d073311263bb94b9fed3c66 (patch)
tree116f4200936ebec0cfe5e0f01d6f8a2a897caabe /tools/browse_trace.cc
parentc9c6ab35a66f791ebdc32ce1b33fda14595befe2 (diff)
downloadmu-7d02b3a73c8329d33d073311263bb94b9fed3c66.tar.gz
5813
Diffstat (limited to 'tools/browse_trace.cc')
-rw-r--r--tools/browse_trace.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/browse_trace.cc b/tools/browse_trace.cc
index f1d8b5c8..fc45f3d5 100644
--- a/tools/browse_trace.cc
+++ b/tools/browse_trace.cc
@@ -80,7 +80,6 @@ trace_stream* Trace_stream = NULL;
 
 ofstream Trace_file;
 int Display_row = 0;
-int Display_column = 0;
 set<int> Visible;
 int Top_of_screen = 0;
 int Left_of_screen = 0;
@@ -389,7 +388,7 @@ int main(int argc, char* argv[]) {
   }
   tb_init();
   tb_clear();
-  Display_row = Display_column = 0;
+  Display_row = 0;
   Top_of_screen = 0;
   refresh_screen_rows();
   while (true) {