about summary refs log tree commit diff stats
path: root/029tools.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-25 22:25:12 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-26 09:03:13 -0700
commitb2e36ec82782b40c34bf181a82bd518b8943cb66 (patch)
tree44c18821c6378e3f0c23058d6096be6a9606b820 /029tools.cc
parent15152795cead7ed7d6673a0c2ac996ac9c346945 (diff)
downloadmu-b2e36ec82782b40c34bf181a82bd518b8943cb66.tar.gz
4418
Use 'dump' consistently to mean 'to screen' (stderr), and 'save' to mean
'to disk'.
Diffstat (limited to '029tools.cc')
-rw-r--r--029tools.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/029tools.cc b/029tools.cc
index 244b72b2..be3c04e2 100644
--- a/029tools.cc
+++ b/029tools.cc
@@ -179,7 +179,7 @@ case _SAVE_TRACE: {
 }
 :(before "End Primitive Recipe Implementations")
 case _SAVE_TRACE: {
-  if (Save_trace) Trace_stream->dump();
+  if (Save_trace) Trace_stream->save();
   break;
 }