summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2021-11-23 15:40:53 +0100
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2021-11-26 13:47:14 +0100
commitda3720879160d78c4655ab298da48d4f7f760020 (patch)
treea71148d051946f8d8262d4e78e302be84151b6db
parent978dbaa9e975968dd6bacf36f70238c9b61643b4 (diff)
CoreBluetooth: fix warning message concatenation
Otherwise word in line join without space in between. Change-Id: I558daa0a26358d435d6000f73c65fb9a0054f53e Reviewed-by: Andreas Buhr <andreas.buhr@qt.io> (cherry picked from commit 819629896fe080bdd79c96a5eb75eec6c368e563) Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
-rw-r--r--src/bluetooth/qlowenergycontroller_darwin.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bluetooth/qlowenergycontroller_darwin.mm b/src/bluetooth/qlowenergycontroller_darwin.mm
index efac1f1a..3835a033 100644
--- a/src/bluetooth/qlowenergycontroller_darwin.mm
+++ b/src/bluetooth/qlowenergycontroller_darwin.mm
@@ -169,7 +169,7 @@ void QLowEnergyControllerPrivateDarwin::init()
if (qt_appNeedsBluetoothUsageDescription() && !qt_appPlistContainsDescription(bluetoothUsageKey)) {
qCWarning(QT_BT_OSX)
- << "The Info.plist file is required to contain"
+ << "The Info.plist file is required to contain "
"'NSBluetoothAlwaysUsageDescription' entry";
return;
}