diff options
Diffstat (limited to '')
-rw-r--r-- | src/BrewingRecipes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/BrewingRecipes.cpp b/src/BrewingRecipes.cpp index ca427f9cc..829660ffe 100644 --- a/src/BrewingRecipes.cpp +++ b/src/BrewingRecipes.cpp @@ -75,7 +75,7 @@ void cBrewingRecipes::AddRecipeFromLine(AString a_Line, unsigned int a_LineNum) return; } - const AStringVector & IngredientAndOutput = StringSplit(InputAndIngredient[1].c_str(), "="); + const AStringVector & IngredientAndOutput = StringSplit(InputAndIngredient[1], "="); if (IngredientAndOutput.size() != 2) { LOGWARNING("brewing.txt: line %d: A line with '=' was expected", a_LineNum); |