socket: remove unused unused() statement

See what I did there?
This commit is contained in:
Bert Belder 2017-09-14 02:59:24 +02:00
parent b4aeb52a6b
commit ee6a1e300a

View File

@ -111,8 +111,6 @@ ep_sock_t* ep_sock_new(ep_port_t* port_info, SOCKET socket) {
if (sock_private == NULL)
return NULL;
unused(port_info);
memset(sock_private, 0, sizeof *sock_private);
tree_node_init(&sock_private->pub.tree_node);
queue_node_init(&sock_private->pub.queue_node);