Skip to content
Snippets Groups Projects
Commit f65b0d31 authored by Kipp Cannon's avatar Kipp Cannon
Browse files

framecpp_channelmux: add another fall-through __attribute__

parent b81854e4
No related branches found
No related tags found
No related merge requests found
...@@ -1089,6 +1089,9 @@ static gboolean sink_event(GstPad *pad, GstObject *parent, GstEvent *event) ...@@ -1089,6 +1089,9 @@ static gboolean sink_event(GstPad *pad, GstObject *parent, GstEvent *event)
case GST_EVENT_EOS: case GST_EVENT_EOS:
GST_LOG_OBJECT(mux, "EOS"); GST_LOG_OBJECT(mux, "EOS");
#if __GNUC__ >= 7
__attribute__ ((fallthrough));
#endif
case GST_EVENT_FLUSH_START: case GST_EVENT_FLUSH_START:
flush(mux); flush(mux);
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment