Merge pull request #224 from Dialga/patch-1

Add switch case for MZ_ZIP_TOTAL_ERRORS
This commit is contained in:
Martin Raiber 2022-05-08 16:44:03 +02:00 committed by GitHub
commit 18bc504331
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}