updated more incorrect logging types (%s vs %d) (#156)

This commit is contained in:
penfold42
2016-08-07 15:06:56 +10:00
committed by redPanther
parent bb3b658b5c
commit 84c041a6fb
4 changed files with 14 additions and 14 deletions

View File

@@ -128,7 +128,7 @@ bool EffectEngine::loadEffectDefinition(const std::string &path, const std::stri
{
const std::list<std::string> & errors = schemaChecker.getMessages();
foreach (const std::string & error, errors) {
Error( log, "Error while checking '%s':", fileName.c_str(), error.c_str());
Error( log, "Error while checking '%s':%s", fileName.c_str(), error.c_str());
}
return false;
}