Merge pull request #236 from Dialga/patch-1

Fix callback typo
This commit is contained in:
Martin Raiber 2022-08-25 22:02:06 +02:00 committed by GitHub
commit 92ab73ac32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4704,7 +4704,7 @@ const char *mz_zip_get_error_string(mz_zip_error mz_err)
case MZ_ZIP_VALIDATION_FAILED: case MZ_ZIP_VALIDATION_FAILED:
return "validation failed"; return "validation failed";
case MZ_ZIP_WRITE_CALLBACK_FAILED: case MZ_ZIP_WRITE_CALLBACK_FAILED:
return "write calledback failed"; return "write callback failed";
case MZ_ZIP_TOTAL_ERRORS: case MZ_ZIP_TOTAL_ERRORS:
return "total errors"; return "total errors";
default: default: