From: RĂ©mi Duraffort Date: Mon, 3 Mar 2008 18:05:24 +0000 (+0100) Subject: Use (void) instead of VLC_UNUSED (with pierre agreement) X-Git-Tag: 0.9.0-test0~2342 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=487b2b1e7439028935350ce5550afcac098bd5f3;p=vlc Use (void) instead of VLC_UNUSED (with pierre agreement) --- diff --git a/src/network/rootwrap.c b/src/network/rootwrap.c index 039b7b751e..ed567df145 100644 --- a/src/network/rootwrap.c +++ b/src/network/rootwrap.c @@ -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; }