LGTM: [skip ci] fix: Wrong type of arguments to formatting function

This commit is contained in:
wmayer
2020-07-24 19:58:48 +02:00
parent 47d570716c
commit eff0655d83

View File

@@ -1582,7 +1582,7 @@ void ParameterManager::CheckDocument() const
parser.parse(xmlFile);
if (parser.getErrorCount() > 0) {
Base::Console().Error("Unexpected XML structure detected: %d errors\n", parser.getErrorCount());
Base::Console().Error("Unexpected XML structure detected: %zu errors\n", parser.getErrorCount());
}
}
catch (XMLException& e) {