summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2016-03-04 00:55:32 +0100
committerMarc Mutz <marc.mutz@kdab.com>2016-03-12 17:29:41 +0000
commit79c0cbf7a2da8f1d233e9f700f949577f5c8cfd1 (patch)
treeac8a7b064a4b0d249b560dc46e0c75b1aad96d28 /src
parent6417bbde8565e0be2d049426b71e6fda538e4440 (diff)
QOpenWFDDevice: fix BrE spelling and grammar in qDebug() output
Also print the failing type. Sanity Bot complained about the spelling and Friedemann about the grammar and missing type information in the output. Change-Id: I7f38c56e569312e082e7b6baf9d556f5e7e40f80 Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/platforms/openwfd/qopenwfddevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platforms/openwfd/qopenwfddevice.cpp b/src/plugins/platforms/openwfd/qopenwfddevice.cpp
index 710c07b643..7a9d22e74d 100644
--- a/src/plugins/platforms/openwfd/qopenwfddevice.cpp
+++ b/src/plugins/platforms/openwfd/qopenwfddevice.cpp
@@ -196,7 +196,7 @@ void QOpenWFDDevice::readEvents(WFDtime wait)
qDebug("Pipeline bind mask event handling not implemented");
break;
default:
- qDebug("Not recognised event type");
+ qDebug("Unrecognized event type: %lu", static_cast<long unsigned int>(type));
break;
}