]> git.sesse.net Git - vlc/blobdiff - src/network/rootwrap.c
Use (void) instead of VLC_UNUSED (with pierre agreement)
[vlc] / src / network / rootwrap.c
index 039b7b751e12f921886c2538a41a54121844f635..ed567df1452a72e74834a59ef3434a872485c59e 100644 (file)
@@ -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;
 }