From: Hanno Date: Wed, 17 Aug 2016 08:31:26 +0000 (+0200) Subject: Remove unused variable to avoid compiler warning. X-Git-Tag: v3.2.2~34^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c1ae20ed246d13f92a7d3a925d5328302f5ecff7;p=thirdparty%2Flibarchive.git Remove unused variable to avoid compiler warning. --- diff --git a/libarchive/archive_write_disk_acl.c b/libarchive/archive_write_disk_acl.c index 54a96696f..cbd202c2b 100644 --- a/libarchive/archive_write_disk_acl.c +++ b/libarchive/archive_write_disk_acl.c @@ -145,7 +145,7 @@ set_acl(struct archive *a, int fd, const char *name, gid_t ae_gid; const char *ae_name; int entries; - int i, r; + int i; ret = ARCHIVE_OK; entries = archive_acl_reset(abstract_acl, ae_requested_type);