Commit 86fffb2f authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

network/rootwrap.c: Unused args fix.

parent 111dac8c
......@@ -442,6 +442,11 @@ void rootwrap (void)
int rootwrap_bind (int family, int socktype, int protocol,
const struct sockaddr *addr, size_t alen)
{
VLC_UNUSED(family);
VLC_UNUSED(socktype);
VLC_UNUSED(protocol);
VLC_UNUSED(addr);
VLC_UNUSED(alen);
return -1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment