Browse Source

opt.h: Set LWIP_PBUF_REF_T back to u8_t, s8_t has no advantage any more after reverting last commit

STABLE-2_1_x
Dirk Ziegelmeier 9 years ago
parent
commit
e94e2da3ec
  1. 6
      src/include/lwip/opt.h

6
src/include/lwip/opt.h

@ -1397,11 +1397,11 @@
#endif
/**
* LWIP_PBUF_REF_T: Refcount type in pbuf. Must be signed!
* Default width of s8_t can be increased if 127 refs are not enough for you.
* LWIP_PBUF_REF_T: Refcount type in pbuf.
* Default width of u8_t can be increased if 255 refs are not enough for you.
*/
#ifndef LWIP_PBUF_REF_T
#define LWIP_PBUF_REF_T s8_t
#define LWIP_PBUF_REF_T u8_t
#endif
/**
* @}

Loading…
Cancel
Save