lwip/dhcp-server: fix warning

This commit is contained in:
Matthias Ringwald 2020-12-02 14:55:14 +01:00
parent 97d2cfbc6f
commit 77da83a6e0

View File

@ -215,7 +215,7 @@ static int fill_options(void *dest,
return ptr - (uint8_t *)dest;
}
static void udp_recv_proc(void *arg, struct udp_pcb *upcb, struct pbuf *p, const struct ip4_addr *addr, u16_t port)
static void udp_recv_proc(void *arg, struct udp_pcb *upcb, struct pbuf *p, const ip_addr_t *addr, u16_t port)
{
(void) arg;
(void) addr;