Minor changes: fix warning in dhcp_unfold_reply when LWIP_DEBUG=0

This commit is contained in:
fbernon 2008-01-21 16:55:26 +00:00
parent baab7c04f7
commit bfd96264e6

View File

@ -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", LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_unfold_reply(): copied %"U16_F" bytes to dhcp->options_in[]\n",
dhcp->options_in_len)); dhcp->options_in_len));
} }
LWIP_UNUSED_ARG(ret);
return ERR_OK; return ERR_OK;
} }