mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 18:20:44 +00:00
memory: add missing parameter to default_mem_map()
Fixes function signature for correctness. https://bugzilla.gnome.org/show_bug.cgi?id=675289
This commit is contained in:
parent
f30e871de3
commit
86e0f4d145
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ _default_alloc_alloc (GstAllocator * allocator, gsize size,
|
|||
}
|
||||
|
||||
static gpointer
|
||||
_default_mem_map (GstMemoryDefault * mem, GstMapFlags flags)
|
||||
_default_mem_map (GstMemoryDefault * mem, gsize maxsize, GstMapFlags flags)
|
||||
{
|
||||
return mem->data;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue