libnm: missing break on get_property

Coverity:
Defect type: MISSING_BREAK
libnm/nm-dhcp-config.c:117: fallthrough: The above case falls through to this one.
This commit is contained in:
Jiří Klimeš 2014-12-04 17:00:01 +01:00
parent 87f2b92da3
commit d637b3efae

View file

@ -114,6 +114,7 @@ get_property (GObject *object,
switch (prop_id) {
case PROP_FAMILY:
g_value_set_int (value, nm_dhcp_config_get_family (self));
break;
case PROP_OPTIONS:
g_value_set_boxed (value, nm_dhcp_config_get_options (self));
break;