The result of dividing a u32 by a size_t is an unsigned int on arm32
and a long unsigned int on arm64. Use "%zu" (the size_t format) to
remove the build warning for 64-bit builds.
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
if (ret) {
if (ret == MMAL_MSG_STATUS_ENOSPC) {
v4l2_err(&dev->v4l2_dev,
- "%s: port has more encodings than we provided space for. Some are dropped (%u vs %u).\n",
+ "%s: port has more encodings than we provided space for. Some are dropped (%zu vs %u).\n",
__func__, param_size / sizeof(u32),
MAX_SUPPORTED_ENCODINGS);
num_encodings = MAX_SUPPORTED_ENCODINGS;