From: richardbarry Date: Fri, 26 Aug 2011 16:44:02 +0000 (+0000) Subject: Remove unused variable warning. X-Git-Tag: V7.0.2~55 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f19072d7bf95c51cc27501e0272cb2dc7256621d;p=freertos Remove unused variable warning. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1555 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/Common/ethernet/lwip-1.4.0/ports/win32/ethernetif.c b/Demo/Common/ethernet/lwip-1.4.0/ports/win32/ethernetif.c index 145d1c0bc..ade2398eb 100644 --- a/Demo/Common/ethernet/lwip-1.4.0/ports/win32/ethernetif.c +++ b/Demo/Common/ethernet/lwip-1.4.0/ports/win32/ethernetif.c @@ -215,6 +215,8 @@ struct eth_hdr *pxHeader; u16_t usTotalLength = p->tot_len - ETH_PAD_SIZE; err_t xReturn = ERR_OK; + ( void ) pxNetIf; + #if defined(LWIP_DEBUG) && LWIP_NETIF_TX_SINGLE_PBUF LWIP_ASSERT("p->next == NULL && p->len == p->tot_len", p->next == NULL && p->len == p->tot_len); #endif