summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorJames McDonnell <jmcdonnell@blackberry.com>2017-04-06 17:10:35 -0400
committerJames McDonnell <jmcdonnell@blackberry.com>2017-05-30 14:19:43 +0000
commit266cc6fab53ae921fddf1889eb29f849f19044b4 (patch)
treeb64f7a42421cf5fa73baf7a3435a7c4f449b6ca3 /src/plugins
parente25cc368ed6e9c4a6bffe886e8f1e71d398ebb9e (diff)
Fix a format string
Used wrong class name. Probably a Copy-FailToChange. Get rid of a warning about the conversion specification that didn't match argument type. Change-Id: I4f24b737dd5f72cc1dc61c58de6ad21d9a07c8ed Reviewed-by: Dan Cape <dcape@qnx.com> Reviewed-by: Christian Stromme <christian.stromme@qt.io>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/qnx/mediaplayer/ppsmediaplayercontrol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qnx/mediaplayer/ppsmediaplayercontrol.cpp b/src/plugins/qnx/mediaplayer/ppsmediaplayercontrol.cpp
index de5e3e0cf..402461331 100644
--- a/src/plugins/qnx/mediaplayer/ppsmediaplayercontrol.cpp
+++ b/src/plugins/qnx/mediaplayer/ppsmediaplayercontrol.cpp
@@ -151,7 +151,7 @@ void PpsMediaPlayerControl::ppsReadyRead(int fd)
// nread is the real space necessary, not the amount read.
if (static_cast<size_t>(nread) > bufferSize - 1) {
//TODO emit error?
- qCritical("BBMediaPlayerControl: PPS buffer size too short; need %u.", nread + 1);
+ qCritical("PpsMediaPlayerControl: PPS buffer size too short; need %zd.", nread + 1);
return;
}