From f68db78a1d3d33479a7f5a32b4c9d5842cf87937 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 25 Feb 2014 14:06:47 +0000 Subject: [PATCH] examples: fix cgroup test build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes build failure caused by compiler warning: test-cgroups.c:82:35: error: no previous prototype for ‘gst_rtsp_cgroup_pool_get_type’ [-Werror=missing-prototypes] --- examples/test-cgroups.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/test-cgroups.c b/examples/test-cgroups.c index 0a38916685..0412e4d02e 100644 --- a/examples/test-cgroups.c +++ b/examples/test-cgroups.c @@ -79,6 +79,8 @@ static void default_thread_enter (GstRTSPThreadPool * pool, static void default_configure_thread (GstRTSPThreadPool * pool, GstRTSPThread * thread, GstRTSPContext * ctx); +static GType gst_rtsp_cgroup_pool_get_type (void); + G_DEFINE_TYPE (GstRTSPCGroupPool, gst_rtsp_cgroup_pool, GST_TYPE_RTSP_THREAD_POOL);