jack: case missing break statement

commit b1098c2ea5 added a new case in
gst_jack_audio_src_get_property() but forgot to add the break statement to it.
This commit is contained in:
Luis de Bethencourt 2015-02-19 11:20:51 +00:00
parent 7ca7b1cd9a
commit 8e5a16e662

View file

@ -903,6 +903,7 @@ gst_jack_audio_src_get_property (GObject * object, guint prop_id,
break;
case PROP_PORT_PATTERN:
g_value_set_string (value, src->port_pattern);
break;
case PROP_CONNECT:
g_value_set_enum (value, src->connect);
break;