]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Explicit unused variables at __archive_check_child().
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>
Wed, 16 Dec 2009 13:02:13 +0000 (08:02 -0500)
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>
Wed, 16 Dec 2009 13:02:13 +0000 (08:02 -0500)
SVN-Revision: 1748

libarchive/filter_fork_windows.c

index a018268c0e96cd5ef43aa536f22c3af497cddd53..38b7097ee996b1e5fa6675f17118f34a520e3dd6 100644 (file)
@@ -105,6 +105,8 @@ fail:
 void
 __archive_check_child(int in, int out)
 {
+       (void)in; /* UNSED */
+       (void)out; /* UNSED */
        Sleep(100);
 }