From 36f470383ba1ab2641d35af84ab3bb3184a648d0 Mon Sep 17 00:00:00 2001 From: chrysn Date: Tue, 11 Nov 2014 16:28:27 +0100 Subject: [PATCH] use u32_t instead of u_int32_t The style u_int32_t is not used anywhere else in the project, and is not supported by the C standard, now using lwIP u32_t type. It was introduced in 25e398a. --- src/netif/ppp/ipcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netif/ppp/ipcp.c b/src/netif/ppp/ipcp.c index 8a0c87ac..d6ef0fdc 100644 --- a/src/netif/ppp/ipcp.c +++ b/src/netif/ppp/ipcp.c @@ -972,7 +972,7 @@ static int ipcp_ackci(fsm *f, u_char *p, int len) { #define ACKCIWINS(opt, addr) \ if (addr) { \ - u_int32_t l; \ + u32_t l; \ if ((len -= CILEN_ADDR) < 0) \ goto bad; \ GETCHAR(citype, p); \