diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2010-10-07 16:27:20 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2010-10-07 19:03:42 +0100 |
commit | ca607d99b25e09c604bc80a61ba38e5beb87b606 (patch) | |
tree | ccbc152a506491b9aeb4c8ed77e4a9aec323b9b0 | |
parent | 8b61681cffc80498ec2a4c857415775d62088841 (diff) |
clock: remove unnecessary g_object_notify() call
GObject will do that for us when g_object_set*() is called.
-rw-r--r-- | gst/gstclock.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gst/gstclock.c b/gst/gstclock.c index e7927786d..00373d22d 100644 --- a/gst/gstclock.c +++ b/gst/gstclock.c @@ -1364,7 +1364,6 @@ gst_clock_set_property (GObject * object, guint prop_id, GST_OBJECT_LOCK (clock); clock->stats = g_value_get_boolean (value); GST_OBJECT_UNLOCK (clock); - g_object_notify (object, "stats"); break; case PROP_WINDOW_SIZE: GST_CLOCK_SLAVE_LOCK (clock); |