diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-11-08 20:48:31 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-11-08 20:48:31 -0800 |
commit | 1ad798a2cace11d799776850fb6ecbbe30f55a60 (patch) | |
tree | 039f333a4b0e4013691a2122afc3e48d53fcca89 | |
parent | e5302026cca04c23cba1431d5e0fceab8667bc08 (diff) | |
download | mu-1ad798a2cace11d799776850fb6ecbbe30f55a60.tar.gz |
2402
-rw-r--r-- | 030container.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/030container.cc b/030container.cc index d5527406..186d6929 100644 --- a/030container.cc +++ b/030container.cc @@ -525,11 +525,11 @@ void check_or_set_invalid_types(const recipe_ordinal r) { const instruction& inst = get(Recipe, r).steps.at(index); for (long long int i = 0; i < SIZE(inst.ingredients); ++i) { check_or_set_invalid_types(inst.ingredients.at(i).type, inst.ingredients.at(i).properties.at(0).second, - maybe(get(Recipe, r).name), "'"+inst.to_string()+"'"); + maybe(get(Recipe, r).name), "'"+inst.to_string()+"'"); } for (long long int i = 0; i < SIZE(inst.products); ++i) { check_or_set_invalid_types(inst.products.at(i).type, inst.products.at(i).properties.at(0).second, - maybe(get(Recipe, r).name), "'"+inst.to_string()+"'"); + maybe(get(Recipe, r).name), "'"+inst.to_string()+"'"); } } } |