From 025d5ce33e98d35ba5419dd7f4cf811a2f0e5cfc Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Thu, 9 Feb 2017 12:49:44 +0100 Subject: [PATCH] plugins: fix build when gcc In commit a8e482f9 we added a function without parameters, but gcc doesn't like that. --- gst/vaapi/gstvaapipluginbase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/vaapi/gstvaapipluginbase.c b/gst/vaapi/gstvaapipluginbase.c index 7509efa..a60498d 100644 --- a/gst/vaapi/gstvaapipluginbase.c +++ b/gst/vaapi/gstvaapipluginbase.c @@ -540,7 +540,7 @@ error_create_allocator: } static inline guint -get_dmabuf_surface_allocation_flags () +get_dmabuf_surface_allocation_flags (void) { /* @FIXME: fetch the real devices ids */ /* Pair vendor/device identifies an unique physical device. */ -- 2.7.4