minor: fix spaces in unix/lib/lwipopts.h

This commit is contained in:
Simon Goldschmidt 2023-09-29 21:38:29 +02:00
parent 0d5db9469e
commit 2d6883c432

View File

@ -238,7 +238,7 @@
/** /**
* IP_FRAG_USES_STATIC_BUF==1: Use a static MTU-sized buffer for IP * IP_FRAG_USES_STATIC_BUF==1: Use a static MTU-sized buffer for IP
* fragmentation. Otherwise pbufs are allocated and reference the original * fragmentation. Otherwise pbufs are allocated and reference the original
* packet data to be fragmented. * packet data to be fragmented.
*/ */
#define IP_FRAG_USES_STATIC_BUF 0 #define IP_FRAG_USES_STATIC_BUF 0
@ -359,7 +359,6 @@
* PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool. The default is * PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool. The default is
* designed to accommodate single full size TCP frame in one pbuf, including * designed to accommodate single full size TCP frame in one pbuf, including
* TCP_MSS, IP header, and link header. * TCP_MSS, IP header, and link header.
*
*/ */
#define PBUF_POOL_BUFSIZE LWIP_MEM_ALIGN_SIZE(TCP_MSS+40+PBUF_LINK_HLEN) #define PBUF_POOL_BUFSIZE LWIP_MEM_ALIGN_SIZE(TCP_MSS+40+PBUF_LINK_HLEN)