Mark handle as unused.

To avoid warning, consistently with other functions/args in the file.
This commit is contained in:
Tomas Kalibera 2025-05-23 10:06:01 +02:00 committed by Nathan Moinvaziri
parent 378a4ebc55
commit b0568345a3

View File

@ -307,6 +307,7 @@ int32_t minizip_extract_entry_cb(void *handle, void *userdata, mz_zip_file *file
minizip_opt *options = (minizip_opt *)userdata; minizip_opt *options = (minizip_opt *)userdata;
char *utf8_string = NULL; char *utf8_string = NULL;
MZ_UNUSED(handle);
MZ_UNUSED(path); MZ_UNUSED(path);
if ((options->encoding > 0) && (file_info->flag & MZ_ZIP_FLAG_UTF8) == 0) { if ((options->encoding > 0) && (file_info->flag & MZ_ZIP_FLAG_UTF8) == 0) {