Make PBUF_LINK_ENCAPSULATION_HLEN default signed (unsigned would be OK, but too many defines are signed already and mixing them gets bad)

This commit is contained in:
goldsimon 2017-07-06 20:26:24 +02:00
parent c730a404d4
commit 866d6c8637

View File

@ -1443,7 +1443,7 @@
* for an additional encapsulation header before ethernet headers (e.g. 802.11)
*/
#if !defined PBUF_LINK_ENCAPSULATION_HLEN || defined __DOXYGEN__
#define PBUF_LINK_ENCAPSULATION_HLEN 0u
#define PBUF_LINK_ENCAPSULATION_HLEN 0
#endif
/**