Correct signature in alternative stub implementation of setup_acls()

This commit is contained in:
Tim Kientzle 2004-04-07 17:43:48 +00:00
parent 7b764c37e4
commit 4102998278

View File

@ -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;
}