diff options
Diffstat (limited to '038scheduler.cc')
-rw-r--r-- | 038scheduler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/038scheduler.cc b/038scheduler.cc index 34a6df8d..c6f903d9 100644 --- a/038scheduler.cc +++ b/038scheduler.cc @@ -111,7 +111,7 @@ Current_routine = NULL; //: special case for the very first routine :(replace{} "void run_main(int argc, char* argv[])") void run_main(int argc, char* argv[]) { - recipe_ordinal r = get(Recipe_ordinal, string("main")); + recipe_ordinal r = get(Recipe_ordinal, "main"); if (r) { routine* main_routine = new routine(r); // Update main_routine |