about summary refs log tree commit diff stats
path: root/025trace.cc
diff options
context:
space:
mode:
Diffstat (limited to '025trace.cc')
-rw-r--r--025trace.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/025trace.cc b/025trace.cc
index 7bd3e579..6a63f369 100644
--- a/025trace.cc
+++ b/025trace.cc
@@ -16,7 +16,7 @@ case TRACE: {
   string label = current_instruction().ingredients.at(0).name;
   assert(isa_literal(current_instruction().ingredients.at(1)));
   string message = current_instruction().ingredients.at(1).name;
-  trace(label) << message;
+  trace(1, label) << message;
   break;
 }