about summary refs log tree commit diff stats
path: root/011load.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-09-14 21:38:53 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-09-14 21:38:53 -0700
commitc91d4b7d3bea0e4d21bea1efaea93f3ccc7257b7 (patch)
tree64f4ee1eff1369baf132fc37ad33740fd4070451 /011load.cc
parent60521b49b14a06c53fffca1070eb591c3b4935a9 (diff)
downloadmu-c91d4b7d3bea0e4d21bea1efaea93f3ccc7257b7.tar.gz
2193
Diffstat (limited to '011load.cc')
-rw-r--r--011load.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/011load.cc b/011load.cc
index 1e43ead0..a084ba6e 100644
--- a/011load.cc
+++ b/011load.cc
@@ -128,7 +128,7 @@ bool next_instruction(istream& in, instruction* curr) {
   }
 
   if (p == words.end()) {
-    raise << "instruction prematurely ended with '<-'\n" << end() << end();
+    raise << "instruction prematurely ended with '<-'\n" << end();
     return false;
   }
   curr->name = *p;
@@ -136,7 +136,7 @@ bool next_instruction(istream& in, instruction* curr) {
     Recipe_ordinal[*p] = Next_recipe_ordinal++;
   }
   if (Recipe_ordinal[*p] == 0) {
-    raise << "Recipe " << *p << " has number 0, which is reserved for IDLE.\n" << end() << end();
+    raise << "Recipe " << *p << " has number 0, which is reserved for IDLE.\n" << end();
     return false;
   }
   curr->operation = Recipe_ordinal[*p];  ++p;