diff options
Diffstat (limited to '062convert_ingredients_to_text.cc')
-rw-r--r-- | 062convert_ingredients_to_text.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/062convert_ingredients_to_text.cc b/062convert_ingredients_to_text.cc index 642de92f..94ff5df3 100644 --- a/062convert_ingredients_to_text.cc +++ b/062convert_ingredients_to_text.cc @@ -93,7 +93,7 @@ void convert_ingredients_to_text(recipe& caller) { // append _:text, ___ // will never ever get used. if (is_literal_text(inst.ingredients.at(0)) || is_mu_text(inst.ingredients.at(0))) { - for (int j = 0; j < SIZE(inst.ingredients); ++j) { + for (int j = /*skip base*/1; j < SIZE(inst.ingredients); ++j) { ostringstream ingredient_name; ingredient_name << "append_" << i << '_' << j << ":address:array:character"; convert_ingredient_to_text(inst.ingredients.at(j), new_instructions, ingredient_name.str()); |