From 78f505622317606eebff2ae4e49deab6ce07cf1d Mon Sep 17 00:00:00 2001 From: Aaron Paden Date: Wed, 28 Dec 2022 21:56:34 -0600 Subject: [PATCH] Add missing filename to ErrorLog call. --- Src/Util/ConfigBuilders.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Util/ConfigBuilders.cpp b/Src/Util/ConfigBuilders.cpp index 007f0e5..eb9ce11 100644 --- a/Src/Util/ConfigBuilders.cpp +++ b/Src/Util/ConfigBuilders.cpp @@ -248,7 +248,7 @@ namespace Util file.open(filename); if (file.fail()) { - ErrorLog("Unable to write to '%s'. Configuration will not be saved."); + ErrorLog("Unable to write to '%s'. Configuration will not be saved.", filename.c_str()); return; } if (!header_comment.empty())