From af38fe7dce96490c95dc5ba354f5d9727129a2f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 24 Jun 2014 13:02:13 +0200 Subject: [PATCH] omxbufferpool: Fix format string compiler warning --- omx/gstomxbufferpool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/omx/gstomxbufferpool.c b/omx/gstomxbufferpool.c index 10a6598c0f..65f4a411d6 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; }