From 5245b1c52fbf12bbe0a349b619f0a546bdd71aa2 Mon Sep 17 00:00:00 2001 From: Dialga Date: Mon, 7 Feb 2022 11:03:31 +1300 Subject: [PATCH] Add switch case for MZ_ZIP_TOTAL_ERRORS --- miniz_zip.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/miniz_zip.c b/miniz_zip.c index f9559e2..8218ac9 100644 --- a/miniz_zip.c +++ b/miniz_zip.c @@ -4701,6 +4701,8 @@ const char *mz_zip_get_error_string(mz_zip_error mz_err) return "validation failed"; case MZ_ZIP_WRITE_CALLBACK_FAILED: return "write calledback failed"; + case MZ_ZIP_TOTAL_ERRORS: + return "total errors"; default: break; }