]> git.sesse.net Git - vlc/commitdiff
network/rootwrap.c: Unused args fix.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Mon, 3 Mar 2008 16:58:50 +0000 (17:58 +0100)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Mon, 3 Mar 2008 16:59:09 +0000 (17:59 +0100)
src/network/rootwrap.c

index 08db8027b1e004378b3444c8cf2a8eb8253837f9..039b7b751e12f921886c2538a41a54121844f635 100644 (file)
@@ -442,6 +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);
     return -1;
 }