summaryrefslogtreecommitdiff
path: root/gst/debugutils
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2018-08-16 16:58:31 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2018-09-10 16:51:13 -0400
commitb7bc4b4cb51349bf9a67a20bb8be6787877dbbca (patch)
tree43adc852ffe5178c0087cb3dadc90a4bb482c4e0 /gst/debugutils
parentf62b7fd71234ab712c67fe8c4deb5e2fac4e9982 (diff)
downloadgstreamer-plugins-bad-b7bc4b4cb51349bf9a67a20bb8be6787877dbbca.tar.gz
watchdog: Add missing static keyword
get/set_property method should have been static.
Diffstat (limited to 'gst/debugutils')
-rw-r--r--gst/debugutils/gstwatchdog.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/gst/debugutils/gstwatchdog.c b/gst/debugutils/gstwatchdog.c
index 1824cbf3b..cb1d90177 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;
-
-
}