From 7ee06113cdded26f5c7937eae163ef0405b7f7d2 Mon Sep 17 00:00:00 2001 From: Oliver Wolff Date: Fri, 25 Oct 2024 10:19:36 +0200 Subject: [PATCH] windeployqt: Fix typo in warning message Fixes: QTBUG-130476 Pick-to: 6.8 Change-Id: I8c5538d6ac58ce6dd72ea00921c1cf197dffd482 Reviewed-by: Michal Klocek Reviewed-by: Wladimir Leuschner --- src/tools/windeployqt/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {}; }