about summary refs log tree commit diff stats
path: root/076continuation.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-11-03 01:50:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-11-03 01:50:46 -0700
commita89c1bed26fd05fc25034e43901c7f03351721a2 (patch)
tree1f269a69ecc25d84c2fd99070a9be79c491b0c9f /076continuation.cc
parenta3195d440d2f0e99400db78e5a4386691c94a9a0 (diff)
downloadmu-a89c1bed26fd05fc25034e43901c7f03351721a2.tar.gz
4104
Stop hardcoding Max_depth everywhere; we had a default value for a
reason but then we forgot all about it.
Diffstat (limited to '076continuation.cc')
-rw-r--r--076continuation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/076continuation.cc b/076continuation.cc
index 4cfeddd5..20f56f19 100644
--- a/076continuation.cc
+++ b/076continuation.cc
@@ -204,7 +204,7 @@ if (current_instruction().ingredients.at(0).type->atom
     int space_address = Current_routine->calls.front().default_space;
     if (space_address != 0) {
       int refcount = get_or_insert(Memory, space_address);
-      trace(9999, "mem") << "incrementing refcount of " << space_address << ": " << refcount << " -> " << refcount+1 << end();
+      trace("mem") << "incrementing refcount of " << space_address << ": " << refcount << " -> " << refcount+1 << end();
       put(Memory, space_address, refcount+1);
     }
   }