mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
videopool: fix printf warning in debug message
https://bugzilla.gnome.org/show_bug.cgi?id=662607
This commit is contained in:
parent
e96aaec6bb
commit
5c91ca3256
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue