summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Meerkoetter <frank.meerkoetter@basyskom.com>2015-12-17 21:20:58 +0100
committerAlex Blasche <alexander.blasche@theqtcompany.com>2015-12-18 08:18:35 +0000
commita66ff1b6fd07ec8a261b39b8bf74ae7f6e6c8b3e (patch)
tree72eba6d5b9c68d576439954c7ce89643f518a060
parentaa9dd7a777aad1f9369193d672c5253fd6bcb5a4 (diff)
downloadqtconnectivity-a66ff1b6fd07ec8a261b39b8bf74ae7f6e6c8b3e.tar.gz
Fix missing break
Fixes coverity CID21692. Change-Id: I6c4d464c54caae826cef1af25334a03037971ef8 Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
-rw-r--r--src/bluetooth/qbluetoothserviceinfo.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bluetooth/qbluetoothserviceinfo.cpp b/src/bluetooth/qbluetoothserviceinfo.cpp
index fefb2549..f41f1e79 100644
--- a/src/bluetooth/qbluetoothserviceinfo.cpp
+++ b/src/bluetooth/qbluetoothserviceinfo.cpp
@@ -548,6 +548,7 @@ static void dumpAttributeVariant(const QVariant &var, const QString indent)
break;
case QMetaType::UShort:
qDebug("%sushort %u", indent.toLocal8Bit().constData(), var.toUInt());
+ break;
case QMetaType::UInt:
qDebug("%suint %u", indent.toLocal8Bit().constData(), var.toUInt());
break;