about summary refs log tree commit diff stats
path: root/072scheduler.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-22 16:10:23 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-22 16:10:23 -0700
commitd8509b41753c0e03eff15c462dbf09749218006f (patch)
tree54313e0b9c0e73d85853afc012976b4bce82d020 /072scheduler.cc
parent3b107f1863930433e771a630dfbba095fa1fd6b0 (diff)
downloadmu-d8509b41753c0e03eff15c462dbf09749218006f.tar.gz
3555
Diffstat (limited to '072scheduler.cc')
-rw-r--r--072scheduler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/072scheduler.cc b/072scheduler.cc
index c5cd616a..46be1e6b 100644
--- a/072scheduler.cc
+++ b/072scheduler.cc
@@ -53,8 +53,8 @@ int Current_routine_index = 0;
 :(before "End Setup")
 Scheduling_interval = 500;
 Routines.clear();
-:(replace{} "void run(recipe_ordinal r)")
-void run(recipe_ordinal r) {
+:(replace{} "void run(const recipe_ordinal r)")
+void run(const recipe_ordinal r) {
   run(new routine(r));
 }