Ongoing fix to patch #5822: converted more statements like (void)arg; into LWIP_UNUSED_ARG(arg);

This commit is contained in:
goldsimon
2007-04-11 19:39:24 +00:00
parent e54f3fdaac
commit 7932bf483b
7 changed files with 45 additions and 45 deletions

View File

@@ -57,7 +57,7 @@ static int tcpip_tcp_timer_active = 0;
static void
tcpip_tcp_timer(void *arg)
{
(void)arg;
LWIP_UNUSED_ARG(arg);
/* call TCP timer handler */
tcp_tmr();