about summary refs log tree commit diff stats
path: root/038scheduler.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-17 12:39:09 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-17 12:39:09 -0700
commitab6ed192b75f084a023cde85ba5b2b65e741d966 (patch)
tree28540a0567ee19b0805831e1e433c65f94ff6c1a /038scheduler.cc
parentdc347ce2d95504a98bb542b48041f516a7f37003 (diff)
downloadmu-ab6ed192b75f084a023cde85ba5b2b65e741d966.tar.gz
1585
Diffstat (limited to '038scheduler.cc')
-rw-r--r--038scheduler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/038scheduler.cc b/038scheduler.cc
index 3541a141..01eeb27b 100644
--- a/038scheduler.cc
+++ b/038scheduler.cc
@@ -143,7 +143,7 @@ START_RUNNING,
 Recipe_number["start-running"] = START_RUNNING;
 :(before "End Primitive Recipe Implementations")
 case START_RUNNING: {
-  assert(isa_literal(current_instruction().ingredients.at(0)));
+  assert(is_literal(current_instruction().ingredients.at(0)));
   assert(!current_instruction().ingredients.at(0).initialized);
   routine* new_routine = new routine(Recipe_number[current_instruction().ingredients.at(0).name]);
 //?   cerr << new_routine->id << " -> " << Current_routine->id << '\n'; //? 1