summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Rafael Giani <dv@pseudoterminal.org>2013-04-27 02:50:25 +0200
committerTim-Philipp Müller <tim@centricular.net>2013-04-27 09:17:28 +0100
commit2d1138f45cb482fcf0e2aba5ec40bd4c1cdb5853 (patch)
tree512d0b6fbb0d9fbf91b037c66daecc80b41f92ae
parenta2db76b048db278ef0aa798e106b7594264e06c0 (diff)
omx: fixed type error in printf call
%zu expects size_t https://bugzilla.gnome.org/show_bug.cgi?id=699008
-rw-r--r--omx/gstomx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/omx/gstomx.c b/omx/gstomx.c
index a2945ed..a6c33bb 100644
--- a/omx/gstomx.c
+++ b/omx/gstomx.c
@@ -1630,7 +1630,7 @@ gst_omx_port_allocate_buffers_unlocked (GstOMXPort * port,
GST_INFO_OBJECT (comp->parent,
"Allocating %d buffers of size %zu for %s port %u", n,
- port->port_def.nBufferSize, comp->name, (guint) port->index);
+ (size_t) port->port_def.nBufferSize, comp->name, (guint) port->index);
if (!port->buffers)
port->buffers = g_ptr_array_sized_new (n);