mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
dmabuf: Use correct print format specifier to fix a compiler warning
This commit is contained in:
parent
5455639fc3
commit
cd1f9ec992
1 changed files with 2 additions and 1 deletions
|
@ -294,7 +294,8 @@ gst_dmabuf_allocator_alloc (GstAllocator * allocator, gint fd, gsize size)
|
||||||
mem->mmap_count = 0;
|
mem->mmap_count = 0;
|
||||||
g_mutex_init (&mem->lock);
|
g_mutex_init (&mem->lock);
|
||||||
|
|
||||||
GST_DEBUG ("%p: fd: %d size %d", mem, mem->fd, mem->mem.maxsize);
|
GST_DEBUG ("%p: fd: %d size %" G_GSIZE_FORMAT, mem, mem->fd,
|
||||||
|
mem->mem.maxsize);
|
||||||
|
|
||||||
return (GstMemory *) mem;
|
return (GstMemory *) mem;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue