about summary refs log tree commit diff stats
path: root/020run.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-04-04 10:49:13 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-04-04 10:49:13 -0700
commitba1fb981f6ce186e37c73e26ec79925bbaf991eb (patch)
tree081ea9387520005585ca226677a86ed94215a366 /020run.cc
parente62aa7e305a0ea8ae2c79522588c3bbc80fa4dc3 (diff)
downloadmu-ba1fb981f6ce186e37c73e26ec79925bbaf991eb.tar.gz
3811
Diffstat (limited to '020run.cc')
-rw-r--r--020run.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/020run.cc b/020run.cc
index 0476d753..e760deaa 100644
--- a/020run.cc
+++ b/020run.cc
@@ -92,7 +92,7 @@ void run_current_routine() {
     }
     // Write Products of Instruction
     if (SIZE(products) < SIZE(current_instruction().products)) {
-      raise << SIZE(products) << " vs " << SIZE(current_instruction().products) << ": failed to write to all products! " << to_original_string(current_instruction()) << '\n' << end();
+      raise << SIZE(products) << " vs " << SIZE(current_instruction().products) << ": failed to write to all products in '" << to_original_string(current_instruction()) << "'\n" << end();
     }
     else {
       for (int i = 0;  i < SIZE(current_instruction().products);  ++i)