Commit 487b2b1e authored by Rémi Duraffort's avatar Rémi Duraffort

Use (void) instead of VLC_UNUSED (with pierre agreement)

parent 9db336f3
......@@ -442,11 +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);
(void)family;
(void)socktype;
(void)protocol;
(void)addr;
(void)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