Remove unused arg warning

This commit is contained in:
goldsimon 2008-06-25 17:01:50 +00:00
parent 579c7a3df4
commit 754453fd22

View File

@ -221,6 +221,8 @@ static u8_t
ping_recv(void *arg, struct raw_pcb *pcb, struct pbuf *p, struct ip_addr *addr)
{
struct icmp_echo_hdr *iecho;
LWIP_UNUSED_ARG(arg);
LWIP_UNUSED_ARG(pcb);
if (pbuf_header( p, -PBUF_IP_HLEN)==0) {
iecho = p->payload;