Fix "switch missing default case" in dhcp.c

This commit is contained in:
Dirk Ziegelmeier 2018-10-05 10:49:21 +02:00
parent 7492bfb0dc
commit 015cff75fd

View File

@ -327,6 +327,8 @@ dhcp_conflict_callback(struct netif *netif, acd_callback_enum_t state)
/* Let the DHCP server know we will not use the address */ /* Let the DHCP server know we will not use the address */
dhcp_decline(netif); dhcp_decline(netif);
break; break;
default:
break;
} }
} }