1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 03:35:53 +01:00

Silenced clang warning

This commit is contained in:
Martin Tůma 2022-06-11 09:48:55 +02:00
parent 57c524e08a
commit 1f2e460c87

View File

@ -87,7 +87,7 @@ Map *MapList::loadFile(const QString &path, const Projection &proj, bool *isDir)
if (!map) {
qWarning("Error loading map file: %s:", qPrintable(path));
for (int i = 0; i < errors.size(); i++)
qWarning(qPrintable(errors.at(i)));
qWarning("%s", qPrintable(errors.at(i)));
}
}