about summary refs log tree commit diff stats
path: root/036refcount.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-12-05 01:09:19 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-12-05 01:09:19 -0800
commit26b4bdc8b3b1d1f2f4b4dae1e7d2b89c7e286b1b (patch)
treee53c12766470bf7b8a667a29afb22d5e729d9ac5 /036refcount.cc
parenta87118d98906d2eda0265fba6cfef8b979f8d8ec (diff)
downloadmu-26b4bdc8b3b1d1f2f4b4dae1e7d2b89c7e286b1b.tar.gz
4138
Diffstat (limited to '036refcount.cc')
-rw-r--r--036refcount.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/036refcount.cc b/036refcount.cc
index e04261bd..69c00d05 100644
--- a/036refcount.cc
+++ b/036refcount.cc
@@ -76,8 +76,8 @@ void decrement_refcount(int old_address, const type_tree* payload_type, int payl
   if (old_refcount < 0) {
     cerr << "Negative refcount!!! " << old_address << ' ' << old_refcount << '\n';
     if (Trace_stream) {
-      cerr << "Saving trace to last_trace.\n";
-      ofstream fout("last_trace");
+      cerr << "Saving trace to last_run.\n";
+      ofstream fout("last_run");
       fout << Trace_stream->readable_contents("");
       fout.close();
     }