Add switch case for MZ_ZIP_TOTAL_ERRORS (#237)

This commit is contained in:
Dialga 2022-02-09 13:24:03 +13:00 committed by GitHub
parent a597bdf814
commit 88e4788137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10016,6 +10016,8 @@ const char *mz_zip_get_error_string(mz_zip_error mz_err) {
return "validation failed"; return "validation failed";
case MZ_ZIP_WRITE_CALLBACK_FAILED: case MZ_ZIP_WRITE_CALLBACK_FAILED:
return "write calledback failed"; return "write calledback failed";
case MZ_ZIP_TOTAL_ERRORS:
return "total errors";
default: default:
break; break;
} }