mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
watchdog: Add missing static keyword
get/set_property method should have been static.
This commit is contained in:
parent
f62b7fd712
commit
b7bc4b4cb5
1 changed files with 2 additions and 4 deletions
|
@ -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;
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue