about summary refs log tree commit diff stats
path: root/073scheduler.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-09-10 10:57:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-09-10 10:57:19 -0700
commit3e3383e782d2c1ef30d0f9aa324dc32f55452b55 (patch)
tree5cb6465afbe88462c7c7c5661658eb5ce4504756 /073scheduler.cc
parentbb4aa1b5a46ba6e17e43b962735c7a49e8b74d6f (diff)
downloadmu-3e3383e782d2c1ef30d0f9aa324dc32f55452b55.tar.gz
3992
Diffstat (limited to '073scheduler.cc')
-rw-r--r--073scheduler.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/073scheduler.cc b/073scheduler.cc
index e3ac18cf..962ac915 100644
--- a/073scheduler.cc
+++ b/073scheduler.cc
@@ -178,10 +178,9 @@ case START_RUNNING: {
   routine* new_routine = new routine(ingredients.at(0).at(0));
   new_routine->parent_index = Current_routine_index;
   // populate ingredients
-  for (int i = 1;  i < SIZE(current_instruction().ingredients);  ++i) {
+  for (int i = /*skip callee*/1;  i < SIZE(current_instruction().ingredients);  ++i) {
     new_routine->calls.front().ingredient_atoms.push_back(ingredients.at(i));
     reagent/*copy*/ ingredient = current_instruction().ingredients.at(i);
-    canonize_type(ingredient);
     new_routine->calls.front().ingredients.push_back(ingredient);
     // End Populate start-running Ingredient
   }