mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
gstbuffer: fix compile warning
This commit is contained in:
parent
b0d89da6b6
commit
e603d08e87
1 changed files with 2 additions and 1 deletions
|
@ -255,7 +255,8 @@ _replace_memory (GstBuffer * buffer, guint len, guint idx, guint length,
|
|||
gsize end, i;
|
||||
|
||||
end = idx + length;
|
||||
GST_LOG ("buffer %p replace %u-%u with memory %p", buffer, idx, end, mem);
|
||||
GST_LOG ("buffer %p replace %u-%" G_GSIZE_FORMAT " with memory %p", buffer,
|
||||
idx, end, mem);
|
||||
|
||||
/* unref old memory */
|
||||
for (i = idx; i < end; i++)
|
||||
|
|
Loading…
Reference in a new issue