diff options
-rw-r--r-- | 082persist.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/082persist.cc b/082persist.cc index 00d81c53..79b9842f 100644 --- a/082persist.cc +++ b/082persist.cc @@ -51,8 +51,8 @@ SAVE, Recipe_ordinal["save"] = SAVE; :(before "End Primitive Recipe Implementations") case SAVE: { - if (SIZE(ingredients) != 1) { - raise << current_recipe_name() << ": 'save' requires exactly one ingredient, but got " << current_instruction().to_string() << '\n' << end(); + if (SIZE(ingredients) != 2) { + raise << current_recipe_name() << ": 'save' requires exactly two ingredients, but got " << current_instruction().to_string() << '\n' << end(); break; } if (!scalar(ingredients.at(0))) |