diff options
author | Lior Kaplan <kaplanlior@gmail.com> | 2015-04-01 18:07:37 +0300 |
---|---|---|
committer | Lior Kaplan <kaplanlior@gmail.com> | 2015-04-01 18:17:53 +0300 |
commit | 59c2a55ec7cbc70cc0227a127d3859fdc95566e7 (patch) | |
tree | 675f0b9ca54844fafc7483f0670e0514f8070ce4 /ext/zip/php_zip.c | |
parent | a32c8ba719493fd2b4700c4f7db1ef130ceb7661 (diff) | |
download | php-git-59c2a55ec7cbc70cc0227a127d3859fdc95566e7.tar.gz |
Fix typo: unitialized -> uninitialized
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 333050f936..c268059b54 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -417,7 +417,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; \ } \ } |