Add missing filename to ErrorLog call.

This commit is contained in:
Aaron Paden 2022-12-28 21:56:34 -06:00 committed by trzy
parent 7e025e64a2
commit 78f5056223

View file

@ -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())