mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-16 14:11:02 +00:00
Fixed tcp_accepted define (need brackets around the parameter)
This commit is contained in:
parent
45a3f198e8
commit
ac7c061406
@ -333,7 +333,7 @@ void tcp_err (struct tcp_pcb *pcb, tcp_err_fn err);
|
||||
(((struct tcp_pcb_listen *)(pcb))->accepts_pending--); } while(0)
|
||||
#else /* TCP_LISTEN_BACKLOG */
|
||||
#define tcp_accepted(pcb) LWIP_ASSERT("pcb->state == LISTEN (called for wrong pcb?)", \
|
||||
pcb->state == LISTEN)
|
||||
(pcb)->state == LISTEN)
|
||||
#endif /* TCP_LISTEN_BACKLOG */
|
||||
|
||||
void tcp_recved (struct tcp_pcb *pcb, u16_t len);
|
||||
|
Loading…
Reference in New Issue
Block a user