Commit 266cc6fa authored by James McDonnell's avatar James McDonnell
Browse files

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: default avatarDan Cape <dcape@qnx.com>
Reviewed-by: default avatarChristian Stromme <christian.stromme@qt.io>
parent e25cc368
No related merge requests found
Showing with 1 addition and 1 deletion
...@@ -151,7 +151,7 @@ void PpsMediaPlayerControl::ppsReadyRead(int fd) ...@@ -151,7 +151,7 @@ void PpsMediaPlayerControl::ppsReadyRead(int fd)
// nread is the real space necessary, not the amount read. // nread is the real space necessary, not the amount read.
if (static_cast<size_t>(nread) > bufferSize - 1) { if (static_cast<size_t>(nread) > bufferSize - 1) {
//TODO emit error? //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; return;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment