Correct the operator in the comment so that it matches the actual #if
This commit is contained in:
parent
9275322b51
commit
9e8733e57a
|
@ -479,7 +479,7 @@ void uip_log(char *msg);
|
||||||
#ifdef UIP_CONF_TCP_MSS
|
#ifdef UIP_CONF_TCP_MSS
|
||||||
#if UIP_CONF_TCP_MSS > (UIP_BUFSIZE - UIP_LLH_LEN - UIP_TCPIP_HLEN)
|
#if UIP_CONF_TCP_MSS > (UIP_BUFSIZE - UIP_LLH_LEN - UIP_TCPIP_HLEN)
|
||||||
#error UIP_CONF_TCP_MSS is too large for the current UIP_BUFSIZE
|
#error UIP_CONF_TCP_MSS is too large for the current UIP_BUFSIZE
|
||||||
#endif /* UIP_CONF_TCP_MSS < (UIP_BUFSIZE - UIP_LLH_LEN - UIP_TCPIP_HLEN) */
|
#endif /* UIP_CONF_TCP_MSS > (UIP_BUFSIZE - UIP_LLH_LEN - UIP_TCPIP_HLEN) */
|
||||||
#define UIP_TCP_MSS (UIP_CONF_TCP_MSS)
|
#define UIP_TCP_MSS (UIP_CONF_TCP_MSS)
|
||||||
#else
|
#else
|
||||||
#define UIP_TCP_MSS (UIP_BUFSIZE - UIP_LLH_LEN - UIP_TCPIP_HLEN)
|
#define UIP_TCP_MSS (UIP_BUFSIZE - UIP_LLH_LEN - UIP_TCPIP_HLEN)
|
||||||
|
|
Loading…
Reference in a new issue