summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2020-05-10 11:16:44 +0300
committerSebastian Dröge <sebastian@centricular.com>2020-05-10 11:17:19 +0300
commit2a2e48fd9e16942107ffe95e6316ff79271070b2 (patch)
treedb1f0a60411e142edec0370fff5af48b6b0df681 /gst
parentfac627ba1b53371c90e7969e3de3e33d791c4780 (diff)
downloadgstreamer-plugins-bad-2a2e48fd9e16942107ffe95e6316ff79271070b2.tar.gz
onviftimestamp: Add missing `break` in set_property()
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1257>
Diffstat (limited to 'gst')
-rw-r--r--gst/onvif/gstrtponviftimestamp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/onvif/gstrtponviftimestamp.c b/gst/onvif/gstrtponviftimestamp.c
index 55aad02f2..1ed546500 100644
--- a/gst/onvif/gstrtponviftimestamp.c
+++ b/gst/onvif/gstrtponviftimestamp.c
@@ -100,6 +100,7 @@ gst_rtp_onvif_timestamp_get_property (GObject * object,
break;
case PROP_DROP_OUT_OF_SEGMENT:
g_value_set_boolean (value, self->prop_drop_out_of_segment);
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;