From e1e7f70e5914be30cd80f1d9658e4333037aedbd Mon Sep 17 00:00:00 2001 From: Dialga Date: Tue, 17 May 2022 01:37:04 +1200 Subject: [PATCH] Fix callback typo --- miniz_zip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniz_zip.c b/miniz_zip.c index 57e5fad..a4f15cf 100644 --- a/miniz_zip.c +++ b/miniz_zip.c @@ -4700,7 +4700,7 @@ const char *mz_zip_get_error_string(mz_zip_error mz_err) case MZ_ZIP_VALIDATION_FAILED: return "validation failed"; case MZ_ZIP_WRITE_CALLBACK_FAILED: - return "write calledback failed"; + return "write callback failed"; case MZ_ZIP_TOTAL_ERRORS: return "total errors"; default: