From 2f53df93e80ab81c291744355ac2d60821191f64 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Mon, 2 Apr 2007 20:34:18 +0000 Subject: [PATCH] Removed printf formatter warning introduced by last check-in (changed local variable from u32_t to u16_t) --- src/core/dhcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/dhcp.c b/src/core/dhcp.c index 778a9a6f..949834eb 100644 --- a/src/core/dhcp.c +++ b/src/core/dhcp.c @@ -277,7 +277,7 @@ static err_t dhcp_select(struct netif *netif) dhcp->tries++; msecs = dhcp->tries < 4 ? dhcp->tries * 1000 : 4 * 1000; dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS; - LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_select(): set request timeout %"U32_F" msecs\n", msecs)); + LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_select(): set request timeout %"U16_F" msecs\n", msecs)); return result; }