diff options
-rw-r--r-- | usr.bin/tar/write.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tar/write.c b/usr.bin/tar/write.c index 6455a20..17f62a1 100644 --- a/usr.bin/tar/write.c +++ b/usr.bin/tar/write.c @@ -874,8 +874,10 @@ setup_acl(struct bsdtar *bsdtar, struct archive_entry *entry, } #else void -setup_acls(struct archive_entry *entry, const char *accpath) +setup_acls(struct bsdtar *bsdtar, struct archive_entry *entry, + const char *accpath) { + (void)bsdtar; (void)entry; (void)accpath; } |