qtsink: explicitely fallthrough switch statement

In case ret is False, fallthrough to default case.

CID #1320705
This commit is contained in:
Luis de Bethencourt 2015-08-28 16:24:24 +01:00 committed by Luis de Bethencourt
parent c8d4e85f9e
commit ff8f648f37

View file

@ -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);