about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-03-27 22:17:03 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-03-27 22:17:03 -0700
commitd3902ff0be0de6ea0cf523a42605b80715e33f38 (patch)
tree3b76c541b2f34ef26997c15d51b3cf445ba31851 /010vm.cc
parent7cca03bd11fa6bd810231d104e90332978dacfd8 (diff)
downloadmu-d3902ff0be0de6ea0cf523a42605b80715e33f38.tar.gz
2816
Move all bounds checks for types and recipes to one place.
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc
index c3618ffe..93145185 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -203,7 +203,7 @@ assert(MAX_PRIMITIVE_RECIPES < 200);  // level 0 is primitives; until 199
 Next_recipe_ordinal = 200;
 put(Recipe_ordinal, "main", Next_recipe_ordinal++);
 // End Load Recipes
-:(before "End Test Run Initialization")
+:(before "End Commandline Parsing")
 assert(Next_recipe_ordinal < 1000);  // recipes being tested didn't overflow into test space
 :(before "End Setup")
 Next_recipe_ordinal = 1000;  // consistent new numbers for each test