about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-20 17:39:00 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-20 17:39:00 -0700
commit0e0982df964311e040862f0381bce47cd21ae9d5 (patch)
tree06fef84cd64661be13abdac2b49427227dea60a9
parent433a7c7b49e5d68fb3e1b25d30d4f140c6204f76 (diff)
downloadmu-0e0982df964311e040862f0381bce47cd21ae9d5.tar.gz
3528
-rw-r--r--071recipe.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/071recipe.cc b/071recipe.cc
index 8a3d8824..4a8caefd 100644
--- a/071recipe.cc
+++ b/071recipe.cc
@@ -114,10 +114,10 @@ case CALL: {
     raise << maybe(current_recipe_name()) << "tried to call empty recipe in '" << to_string(current_instruction()) << "'" << end();
     break;
   }
-  const instruction& caller_instruction = current_instruction();
+  const instruction& call_instruction = current_instruction();
   Current_routine->calls.push_front(call(ingredients.at(0).at(0)));
   ingredients.erase(ingredients.begin());  // drop the callee
-  finish_call_housekeeping(caller_instruction, ingredients);
+  finish_call_housekeeping(call_instruction, ingredients);
   continue;
 }