diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-08-28 16:24:24 +0100 |
---|---|---|
committer | Luis de Bethencourt <luisbg@osg.samsung.com> | 2015-09-29 13:37:08 +0100 |
commit | ff8f648f377ed78f9dafd7df09ffb6637019ed13 (patch) | |
tree | 8b2b73a66a96bfbcd119481643a1a1dba22c1d0c /ext | |
parent | c8d4e85f9e88d0e1786a2f5fcb07b2fa785346bf (diff) | |
download | gstreamer-plugins-bad-ff8f648f377ed78f9dafd7df09ffb6637019ed13.tar.gz |
qtsink: explicitely fallthrough switch statement
In case ret is False, fallthrough to default case.
CID #1320705
Diffstat (limited to 'ext')
-rw-r--r-- | ext/qt/gstqtsink.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/qt/gstqtsink.cc b/ext/qt/gstqtsink.cc index 9ff13b04c..0f32034d1 100644 --- a/ext/qt/gstqtsink.cc +++ b/ext/qt/gstqtsink.cc @@ -271,6 +271,8 @@ gst_qt_sink_query (GstBaseSink * bsink, GstQuery * query) if (ret) return ret; + + /* fallthrough */ } default: res = GST_BASE_SINK_CLASS (parent_class)->query (bsink, query); |