mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2025-08-04 13:34:38 +08:00
fixed more (tiny) warnings...
This commit is contained in:
parent
f5077dc982
commit
b16316ae37
@ -349,7 +349,7 @@ dhcp_select(struct netif *netif)
|
|||||||
* The DHCP timer that checks for lease renewal/rebind timeouts.
|
* The DHCP timer that checks for lease renewal/rebind timeouts.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
dhcp_coarse_tmr()
|
dhcp_coarse_tmr(void)
|
||||||
{
|
{
|
||||||
struct netif *netif = netif_list;
|
struct netif *netif = netif_list;
|
||||||
LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_coarse_tmr()\n"));
|
LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_coarse_tmr()\n"));
|
||||||
@ -387,7 +387,7 @@ dhcp_coarse_tmr()
|
|||||||
* This timer checks whether an outstanding DHCP request is timed out.
|
* This timer checks whether an outstanding DHCP request is timed out.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
dhcp_fine_tmr()
|
dhcp_fine_tmr(void)
|
||||||
{
|
{
|
||||||
struct netif *netif = netif_list;
|
struct netif *netif = netif_list;
|
||||||
/* loop through netif's */
|
/* loop through netif's */
|
||||||
|
@ -384,7 +384,7 @@ autoip_stop(struct netif *netif)
|
|||||||
* Has to be called in loop every AUTOIP_TMR_INTERVAL milliseconds
|
* Has to be called in loop every AUTOIP_TMR_INTERVAL milliseconds
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
autoip_tmr()
|
autoip_tmr(void)
|
||||||
{
|
{
|
||||||
struct netif *netif = netif_list;
|
struct netif *netif = netif_list;
|
||||||
/* loop through netif's */
|
/* loop through netif's */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user