Skip to content

Commit

Permalink
fix format-security on Q_OS_MAC
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s authored and usiems committed Apr 18, 2024
1 parent 16da4f9 commit 0e1ebc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ namespace
QString reason = "The QTDIR environment variable " + qtdir.isEmpty() ?
"is not set. " : "points to a non-existing directory. ";
#if defined(Q_OS_MAC)
qWarning((reason + "Assuming standard binary install using frameworks.").toUtf8().constData());
qWarning() << reason << "Assuming standard binary install using frameworks.";
QString frameworkDir = "/Library/Frameworks";
includes << (frameworkDir + "/QtXml.framework/Headers");
includes << (frameworkDir + "/QtNetwork.framework/Headers");
Expand Down

0 comments on commit 0e1ebc4

Please sign in to comment.