From 5c91ca32567ea6937beba80d8b1e8c7d727aec76 Mon Sep 17 00:00:00 2001 From: Matej Knopp Date: Tue, 27 Dec 2011 04:18:19 +0100 Subject: [PATCH] videopool: fix printf warning in debug message https://bugzilla.gnome.org/show_bug.cgi?id=662607 --- gst-libs/gst/video/gstvideopool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.7.4