about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--030container.cc4
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()+"'");
     }
   }
 }