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:
Sreerenj Balachandran 2012-05-02 14:00:43 +03:00 committed by Tim-Philipp Müller
parent f30e871de3
commit 86e0f4d145

View file

@ -222,7 +222,7 @@ _default_alloc_alloc (GstAllocator * allocator, gsize size,
} }
static gpointer static gpointer
_default_mem_map (GstMemoryDefault * mem, GstMapFlags flags) _default_mem_map (GstMemoryDefault * mem, gsize maxsize, GstMapFlags flags)
{ {
return mem->data; return mem->data;
} }