From bfd96264e635e78b0897a751a4f3216277717626 Mon Sep 17 00:00:00 2001 From: fbernon Date: Mon, 21 Jan 2008 16:55:26 +0000 Subject: [PATCH] Minor changes: fix warning in dhcp_unfold_reply when LWIP_DEBUG=0 --- src/core/dhcp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/dhcp.c b/src/core/dhcp.c index 05edd757..28b80326 100644 --- a/src/core/dhcp.c +++ b/src/core/dhcp.c @@ -1185,6 +1185,7 @@ dhcp_unfold_reply(struct dhcp *dhcp) LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_unfold_reply(): copied %"U16_F" bytes to dhcp->options_in[]\n", dhcp->options_in_len)); } + LWIP_UNUSED_ARG(ret); return ERR_OK; }