memory: add missing parameter to default_mem_map()
authorSreerenj Balachandran <sreerenj.balachandran@intel.com>
Wed, 2 May 2012 11:00:43 +0000 (14:00 +0300)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 4 May 2012 08:22:51 +0000 (09:22 +0100)
Fixes function signature for correctness.

https://bugzilla.gnome.org/show_bug.cgi?id=675289

gst/gstmemory.c

index 022d397162212d0e5612eadde4d09c6e8f25f229..8eb112e722b33a3f1c983a39c86e491fd22f0668 100644 (file)
@@ -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;
 }