LWIP - removed __unused where inappropriate

This commit is contained in:
Tomas Hruby 2011-05-25 09:41:19 +02:00
parent aff45df1af
commit 5582aae6d6

View file

@ -225,9 +225,9 @@ static void udp_op_read(struct socket * sock, message * m)
}
}
static int udp_op_send(__unused struct socket * sock,
__unused struct pbuf * pbuf,
__unused message * m)
static int udp_op_send(struct socket * sock,
struct pbuf * pbuf,
message * m)
{
int err;