summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2014-06-24 13:02:13 +0200
committerSebastian Dröge <sebastian@centricular.com>2014-06-24 13:02:13 +0200
commitaf38fe7dce96490c95dc5ba354f5d9727129a2f0 (patch)
treefb4dc3ee08ceee87761132b6c32e21472dddd574
parent326e15ca85e66352078c73b42c27afcb5f0b7f48 (diff)
downloadgst-omx-af38fe7dce96490c95dc5ba354f5d9727129a2f0.tar.gz
omxbufferpool: Fix format string compiler warning
-rw-r--r--omx/gstomxbufferpool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/omx/gstomxbufferpool.c b/omx/gstomxbufferpool.c
index 10a6598..65f4a41 100644
--- a/omx/gstomxbufferpool.c
+++ b/omx/gstomxbufferpool.c
@@ -148,7 +148,7 @@ gst_omx_memory_allocator_alloc (GstAllocator * allocator, GstMemoryFlags flags,
align -= 1;
if (((align + 1) & align) != 0) {
GST_WARNING ("Invalid alignment that is not a power of two: %u",
- buf->port->port_def.nBufferAlignment);
+ (guint) buf->port->port_def.nBufferAlignment);
align = 0;
}