From 0985e925a1b3527b512a63ce161d8c2c182db188 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Wed, 18 Jul 2018 07:31:47 +0200 Subject: [PATCH] Fix bug #54327: V2.1.0rc1 pbuf.c misses stdint.h include ... without reformatting the document (clang-format) --- src/core/pbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/pbuf.c b/src/core/pbuf.c index d460d8f4..a209e0ca 100644 --- a/src/core/pbuf.c +++ b/src/core/pbuf.c @@ -1074,7 +1074,7 @@ void * pbuf_get_contiguous(const struct pbuf *p, void *buffer, size_t bufsize, u16_t len, u16_t offset) { const struct pbuf *q; - uint16_t out_offset; + u16_t out_offset; LWIP_ERROR("pbuf_get_contiguous: invalid buf", (p != NULL), return NULL;); LWIP_ERROR("pbuf_get_contiguous: invalid dataptr", (buffer != NULL), return NULL;);