diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-10-05 18:26:04 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-10-05 18:26:04 -0700 |
commit | 745e8bdd7ad66ebfb0a282f820c93d3a544b2afe (patch) | |
tree | 39bccf9ebe3b6fbd2194f33f3f932cd34330f161 | |
parent | c3deac87c6bb8c9ab87049cf50eafc94b32a7e1f (diff) | |
download | mu-745e8bdd7ad66ebfb0a282f820c93d3a544b2afe.tar.gz |
2246
-rw-r--r-- | 020run.cc | 2 |
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) { |