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) ...@@ -442,11 +442,11 @@ void rootwrap (void)
int rootwrap_bind (int family, int socktype, int protocol, int rootwrap_bind (int family, int socktype, int protocol,
const struct sockaddr *addr, size_t alen) const struct sockaddr *addr, size_t alen)
{ {
VLC_UNUSED(family); (void)family;
VLC_UNUSED(socktype); (void)socktype;
VLC_UNUSED(protocol); (void)protocol;
VLC_UNUSED(addr); (void)addr;
VLC_UNUSED(alen); (void)alen;
return -1; 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