summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Rafael Giani <dv@pseudoterminal.org>2013-04-27 02:50:25 +0200
committerJosep Torra <n770galaxy@gmail.com>2013-05-10 10:21:08 +0200
commit59175ca4ca0308be6a971fc01df22389e485c1b7 (patch)
tree67133e13d1cb52460a26825e38eda405f65dc041
parent19619228823ccc02cf07df4f156a95720d8cf0f4 (diff)
downloadgst-omx-59175ca4ca0308be6a971fc01df22389e485c1b7.tar.gz
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 75caeda..e7a1660 100644
--- a/omx/gstomx.c
+++ b/omx/gstomx.c
@@ -1635,7 +1635,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);