aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2025-10-10 09:40:18 +0200
committerXavier Del Campo Romero <xavi92@disroot.org>2025-10-10 09:40:18 +0200
commit80d179f9fe013d727f571f4730ebbe4d228c9382 (patch)
treef532798a4c13ab57ec1d19e7c1aadfc2b6da6401
parentf15d534796129c53f2c24bf8eb9b69d686b957b0 (diff)
zip.c: Remove unused variable
-rw-r--r--zip.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/zip.c b/zip.c
index 7e12c73..5af30c2 100644
--- a/zip.c
+++ b/zip.c
@@ -17,7 +17,6 @@
struct zip
{
- bool finished;
char *basedir;
struct cftw *cftw;
ZIPstream *stream;
@@ -216,7 +215,6 @@ static int finalize(struct zip *const z)
return -1;
}
- z->finished = true;
z->next = dump_final;
return 0;
}