about summary refs log tree commit diff stats
path: root/073scheduler.cc
diff options
context:
space:
mode:
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
   }