From b0568345a35ed7de9f06b3d75303f2af4c1d10a3 Mon Sep 17 00:00:00 2001 From: Tomas Kalibera Date: Fri, 23 May 2025 10:06:01 +0200 Subject: [PATCH] Mark handle as unused. To avoid warning, consistently with other functions/args in the file. --- minizip.c | 1 + 1 file changed, 1 insertion(+) diff --git a/minizip.c b/minizip.c index b629fa2..2491e63 100644 --- a/minizip.c +++ b/minizip.c @@ -307,6 +307,7 @@ int32_t minizip_extract_entry_cb(void *handle, void *userdata, mz_zip_file *file minizip_opt *options = (minizip_opt *)userdata; char *utf8_string = NULL; + MZ_UNUSED(handle); MZ_UNUSED(path); if ((options->encoding > 0) && (file_info->flag & MZ_ZIP_FLAG_UTF8) == 0) {