Fix unused arg from last patch the lwIP way

This commit is contained in:
Dirk Ziegelmeier 2017-06-19 14:11:35 +02:00
parent 6e62b6090b
commit b92bcc5f02

View File

@ -390,7 +390,7 @@ void tcp_backlog_accepted(struct tcp_pcb* pcb);
#define tcp_backlog_delayed(pcb)
#define tcp_backlog_accepted(pcb)
#endif /* TCP_LISTEN_BACKLOG */
#define tcp_accepted(pcb) { (void)pcb; } /* compatibility define, not needed any more */
#define tcp_accepted(pcb) { LWIP_UNUSED_ARG(pcb); } /* compatibility define, not needed any more */
void tcp_recved (struct tcp_pcb *pcb, u16_t len);
err_t tcp_bind (struct tcp_pcb *pcb, const ip_addr_t *ipaddr,