diff options
author | Oliver Wolff <[email protected]> | 2024-10-25 10:19:36 +0200 |
---|---|---|
committer | Oliver Wolff <[email protected]> | 2024-10-25 18:18:44 +0200 |
commit | 7ee06113cdded26f5c7937eae163ef0405b7f7d2 (patch) | |
tree | 205e592f12f516a985ba56fdf303bee106a6438e | |
parent | 9a0838d553e852130f12c03d1903d560ad8fa6b2 (diff) |
windeployqt: Fix typo in warning message
Fixes: QTBUG-130476
Pick-to: 6.8
Change-Id: I8c5538d6ac58ce6dd72ea00921c1cf197dffd482
Reviewed-by: Michal Klocek <[email protected]>
Reviewed-by: Wladimir Leuschner <[email protected]>
-rw-r--r-- | src/tools/windeployqt/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/windeployqt/main.cpp b/src/tools/windeployqt/main.cpp index eb4a97b2c60..ddec54041dd 100644 --- a/src/tools/windeployqt/main.cpp +++ b/src/tools/windeployqt/main.cpp @@ -987,7 +987,7 @@ static QString deployPlugin(const QString &plugin, const QDir &subDir, const boo if (optVerboseLevel && subDirName == u"tls" && plugin.contains(u"qopensslbackend") && !deployOpenSslPlugin) { std::wcout << "Skipping plugin " << plugin - << ". Use -force_openssl or specify -openssl-root if you want to use it.\n"; + << ". Use -force-openssl or specify -openssl-root if you want to use it.\n"; return {}; } |