Skip to content

Commit

Permalink
Prevent failing build with -Werror=format-security
Browse files Browse the repository at this point in the history
  • Loading branch information
ExplosBlue committed Jul 24, 2023
1 parent 7533972 commit aa40611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tileseteditorwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ void TilesetEditorWindow::loadBehaviors()

QDomElement root = xmlBehaviors.documentElement();
QString time = root.attribute("timestamp", "Invalid Time");
qDebug("behaviors.xml from: " + time.toLatin1());
qDebug() << "behaviors.xml from: " + time.toLatin1();

QDomElement behaviorElement = root.elementsByTagName("special_behaviors").at(0).firstChild().toElement();
while (!behaviorElement.isNull())
Expand Down

0 comments on commit aa40611

Please sign in to comment.