From d79435750489690a63a9bd3c7c0db2143f28c153 Mon Sep 17 00:00:00 2001 From: fbernon Date: Tue, 4 Sep 2007 14:30:26 +0000 Subject: [PATCH] Fix warnings inside sockets.c with "gcc" compilers. See "Description" in http://www.opengroup.org/onlinepubs/007908799/xns/syssocket.h.html : --- src/include/lwip/sockets.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/sockets.h b/src/include/lwip/sockets.h index 12046643..185beee2 100644 --- a/src/include/lwip/sockets.h +++ b/src/include/lwip/sockets.h @@ -58,7 +58,7 @@ struct sockaddr { }; #ifndef socklen_t -# define socklen_t int +# define socklen_t u32_t #endif