From e94e2da3ec31dfdfdc4ab4bd15e12d71e9feec42 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Thu, 23 Feb 2017 18:10:00 +0100 Subject: [PATCH] opt.h: Set LWIP_PBUF_REF_T back to u8_t, s8_t has no advantage any more after reverting last commit --- src/include/lwip/opt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/include/lwip/opt.h b/src/include/lwip/opt.h index 0fafcde3..d0973e70 100644 --- a/src/include/lwip/opt.h +++ b/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 /** * @}