Преглед на файлове

Remove unused variable in zip_hash_ancestors.

Under gcc 5.4.0, this generates unused variable warnings, which in combination
with -Werror causes a compile error.
David Yip преди 9 години
родител
ревизия
9293c3dc8d
променени са 1 файла, в които са добавени 0 реда и са изтрити 1 реда
  1. 0 1
      src/archiver_zip.c

+ 0 - 1
src/archiver_zip.c

@@ -845,7 +845,6 @@ static ZIPentry *zip_hash_ancestors(ZIPinfo *info, char *name)
     if (sep)
     {
         const size_t namelen = (sep - name) + 1;
-        ZIPentry *parent;
 
         *sep = '\0';  /* chop off last piece. */
         retval = zip_find_entry(info, name);