about summary refs log tree commit diff stats
path: root/020run.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-05 18:26:04 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-05 18:26:04 -0700
commit745e8bdd7ad66ebfb0a282f820c93d3a544b2afe (patch)
tree39bccf9ebe3b6fbd2194f33f3f932cd34330f161 /020run.cc
parentc3deac87c6bb8c9ab87049cf50eafc94b32a7e1f (diff)
downloadmu-745e8bdd7ad66ebfb0a282f820c93d3a544b2afe.tar.gz
2246
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 29d57b02..329bcdb0 100644
--- a/020run.cc
+++ b/020run.cc
@@ -92,7 +92,7 @@ void run_current_routine()
       }
     }
     if (SIZE(products) < SIZE(current_instruction().products)) {
-      raise << SIZE(products) << " vs " << SIZE(current_instruction().products) << ": failed to write to all products! " << current_instruction().to_string() << end();
+      raise << SIZE(products) << " vs " << SIZE(current_instruction().products) << ": failed to write to all products! " << current_instruction().to_string() << '\n' << end();
     }
     else {
       for (long long int i = 0; i < SIZE(current_instruction().products); ++i) {