From: Matej Knopp Date: Tue, 27 Dec 2011 03:18:19 +0000 (+0100) Subject: videopool: fix printf warning in debug message X-Git-Tag: 1.19.3~511^2~6938 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c91ca32567ea6937beba80d8b1e8c7d727aec76;p=platform%2Fupstream%2Fgstreamer.git videopool: fix printf warning in debug message https://bugzilla.gnome.org/show_bug.cgi?id=662607 --- diff --git a/gst-libs/gst/video/gstvideopool.c b/gst-libs/gst/video/gstvideopool.c index 239cecb..d7e0dd1 100644 --- a/gst-libs/gst/video/gstvideopool.c +++ b/gst-libs/gst/video/gstvideopool.c @@ -248,7 +248,7 @@ video_buffer_pool_alloc (GstBufferPool * pool, GstBuffer ** buffer, info = &priv->info; - GST_DEBUG_OBJECT (pool, "alloc %u", info->size); + GST_DEBUG_OBJECT (pool, "alloc %" G_GSIZE_FORMAT, info->size); mem = gst_allocator_alloc (priv->allocator, info->size + priv->prefix,