From 114b84c1a33c8ed6a2a68f0766a0a9672e051b74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Zanelli?= Date: Fri, 7 Nov 2014 17:06:49 +0100 Subject: [PATCH] v4l2allocator: fix gst_v4l2_allocator_stop prototype gst_v4l2_allocator_stop returns a GstV4l2Return, not a gboolean. https://bugzilla.gnome.org/show_bug.cgi?id=739792 --- sys/v4l2/gstv4l2allocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/v4l2/gstv4l2allocator.h b/sys/v4l2/gstv4l2allocator.h index 3f7b33def6..8200e03d42 100644 --- a/sys/v4l2/gstv4l2allocator.h +++ b/sys/v4l2/gstv4l2allocator.h @@ -123,7 +123,7 @@ GstV4l2Allocator* gst_v4l2_allocator_new (GstObject *parent, gint guint gst_v4l2_allocator_start (GstV4l2Allocator * allocator, guint32 count, guint32 memory); -gboolean gst_v4l2_allocator_stop (GstV4l2Allocator * allocator); +GstV4l2Return gst_v4l2_allocator_stop (GstV4l2Allocator * allocator); GstV4l2MemoryGroup* gst_v4l2_allocator_alloc_mmap (GstV4l2Allocator * allocator);