From: Tim-Philipp Müller Date: Tue, 25 Feb 2014 14:06:47 +0000 (+0000) Subject: examples: fix cgroup test build X-Git-Tag: 1.6.0~257 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f68db78a1d3d33479a7f5a32b4c9d5842cf87937;p=platform%2Fupstream%2Fgst-rtsp-server.git examples: fix cgroup test build 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] --- diff --git a/examples/test-cgroups.c b/examples/test-cgroups.c index 0a38916..0412e4d 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);