]> git.sesse.net Git - vlc/commitdiff
Use (void) instead of VLC_UNUSED (with pierre agreement)
authorRémi Duraffort <ivoire@via.ecp.fr>
Mon, 3 Mar 2008 18:05:24 +0000 (19:05 +0100)
committerRémi Duraffort <ivoire@via.ecp.fr>
Mon, 3 Mar 2008 18:13:32 +0000 (19:13 +0100)
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;
 }