Index: src/core/mem.c =================================================================== RCS file: /sources/lwip/lwip/src/core/mem.c,v retrieving revision 1.56 diff -u -p -r1.56 mem.c --- src/core/mem.c 3 Dec 2007 18:01:28 -0000 1.56 +++ src/core/mem.c 2 Jan 2008 15:34:42 -0000 @@ -12,7 +12,7 @@ * MEM_USE_CUSTOM_POOLS to 1 and create a file "lwippools.h" that includes a list * of pools like the this (more pools can be added between _START and _END): * - * /* Define three pools with sizes 256, 512, and 1512 bytes + * Define three pools with sizes 256, 512, and 1512 bytes * LWIP_MALLOC_MEMPOOL_START * LWIP_MALLOC_MEMPOOL(20, 256) * LWIP_MALLOC_MEMPOOL(10, 512) Index: src/core/pbuf.c =================================================================== RCS file: /sources/lwip/lwip/src/core/pbuf.c,v retrieving revision 1.125 diff -u -p -r1.125 pbuf.c --- src/core/pbuf.c 25 Nov 2007 13:57:05 -0000 1.125 +++ src/core/pbuf.c 2 Jan 2008 15:34:42 -0000 @@ -307,7 +307,7 @@ pbuf_realloc(struct pbuf *p, u16_t new_l /* (other types merely adjust their length fields */ if ((q->type == PBUF_RAM) && (rem_len != q->len)) { /* reallocate and adjust the length of the pbuf that will be split */ - mem_realloc(q, (u8_t *)q->payload - (u8_t *)q + rem_len); + (void) mem_realloc(q, (u8_t *)q->payload - (u8_t *)q + rem_len); } /* adjust length fields for new last pbuf */ q->len = rem_len;