From 108ed3c81af1d3618355da0680541ddaa0723fd9 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Sun, 2 May 2010 09:10:58 +0000 Subject: [PATCH] struct netbuf: reorder members to save some space --- src/include/lwip/netbuf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/netbuf.h b/src/include/lwip/netbuf.h index d08541ee..86e4f1d3 100644 --- a/src/include/lwip/netbuf.h +++ b/src/include/lwip/netbuf.h @@ -45,8 +45,8 @@ struct netbuf { ip_addr_t *addr; u16_t port; #if LWIP_NETBUF_RECVINFO - ip_addr_t *toaddr; u16_t toport; + ip_addr_t *toaddr; #endif /* LWIP_NETBUF_RECVINFO */ };