CORE: fixed missing prototype for pbuf_header_impl() function

lwip/src/core/pbuf.c:502:1: warning: no previous prototype for ‘pbuf_header_impl’ [-Wmissing-prototypes]
This commit is contained in:
Sylvain Rochet 2014-12-24 15:18:21 +01:00
parent 2b3e020152
commit 382ddac1a1

View File

@ -498,7 +498,7 @@ pbuf_realloc(struct pbuf *p, u16_t new_len)
* @return non-zero on failure, zero on success.
*
*/
u8_t
static u8_t
pbuf_header_impl(struct pbuf *p, s16_t header_size_increment, u8_t force)
{
u16_t type;