diff options
author | Joey Smith <joeysmith@gmail.com> | 2013-01-08 14:18:31 -0700 |
---|---|---|
committer | Joey Smith <joeysmith@gmail.com> | 2013-01-08 14:18:31 -0700 |
commit | c3acefd9ea9f1c0b0900f75d05c14a1e6ab2b671 (patch) | |
tree | 6e9f26ea41430d2d875fb9d54078b9456ac47505 /ext/zip/php_zip.c | |
parent | c41291feb9d8b713684331307147bbaef43bc22a (diff) | |
download | php-git-c3acefd9ea9f1c0b0900f75d05c14a1e6ab2b671.tar.gz |
Fix a typo in the ZipArchive error messages
Diffstat (limited to 'ext/zip/php_zip.c')
-rw-r--r-- | ext/zip/php_zip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index 727cc853ca..5fd470a105 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -410,7 +410,7 @@ static int php_zip_parse_options(zval *options, long *remove_all_path, ze_zip_object *obj = (ze_zip_object*) zend_object_store_get_object(object TSRMLS_CC); \ intern = obj->za; \ if (!intern) { \ - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid or unitialized Zip object"); \ + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid or uninitialized Zip object"); \ RETURN_FALSE; \ } \ } |