From: Nicolas Dufresne Date: Thu, 16 Aug 2018 20:58:31 +0000 (-0400) Subject: watchdog: Add missing static keyword X-Git-Tag: 1.16.2~659 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7bc4b4cb51349bf9a67a20bb8be6787877dbbca;p=platform%2Fupstream%2Fgst-plugins-bad.git watchdog: Add missing static keyword get/set_property method should have been static. --- diff --git a/gst/debugutils/gstwatchdog.c b/gst/debugutils/gstwatchdog.c index 1824cbf..cb1d901 100644 --- a/gst/debugutils/gstwatchdog.c +++ b/gst/debugutils/gstwatchdog.c @@ -129,7 +129,7 @@ gst_watchdog_init (GstWatchdog * watchdog) { } -void +static void gst_watchdog_set_property (GObject * object, guint property_id, const GValue * value, GParamSpec * pspec) { @@ -150,7 +150,7 @@ gst_watchdog_set_property (GObject * object, guint property_id, } } -void +static void gst_watchdog_get_property (GObject * object, guint property_id, GValue * value, GParamSpec * pspec) { @@ -417,6 +417,4 @@ gst_watchdog_change_state (GstElement * element, GstStateChange transition) } return ret; - - }