From 86e0f4d14561b1ef367406561215dfb64f6d367d Mon Sep 17 00:00:00 2001 From: Sreerenj Balachandran Date: Wed, 2 May 2012 14:00:43 +0300 Subject: [PATCH] memory: add missing parameter to default_mem_map() Fixes function signature for correctness. https://bugzilla.gnome.org/show_bug.cgi?id=675289 --- gst/gstmemory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstmemory.c b/gst/gstmemory.c index 022d397162..8eb112e722 100644 --- a/gst/gstmemory.c +++ b/gst/gstmemory.c @@ -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; }