From 487b2b1e7439028935350ce5550afcac098bd5f3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Mon, 3 Mar 2008 19:05:24 +0100 Subject: [PATCH] Use (void) instead of VLC_UNUSED (with pierre agreement) --- src/network/rootwrap.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; } -- 2.39.2