diff options
Diffstat (limited to 'archive-zip.c')
-rw-r--r-- | archive-zip.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/archive-zip.c b/archive-zip.c index 9fe43d740d..0456f1ebf1 100644 --- a/archive-zip.c +++ b/archive-zip.c @@ -612,12 +612,13 @@ static void dos_time(timestamp_t *timestamp, int *dos_date, int *dos_time) *dos_time = tm.tm_sec / 2 + tm.tm_min * 32 + tm.tm_hour * 2048; } -static int archive_zip_config(const char *var, const char *value, void *data) +static int archive_zip_config(const char *var, const char *value, + void *data UNUSED) { return userdiff_config(var, value); } -static int write_zip_archive(const struct archiver *ar, +static int write_zip_archive(const struct archiver *ar UNUSED, struct archiver_args *args) { int err; |