diff options
author | Remi Collet <remi@php.net> | 2017-03-01 17:01:58 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2017-03-01 17:01:58 +0100 |
commit | 53a08fd07d37062c8605202ab973f311d738c59a (patch) | |
tree | 3cfcf76c63c8e972d786bd5cca91a8c070780f49 /ext/zip | |
parent | 868930e0794e0ad49a95d6add5e3c7eac8743455 (diff) | |
download | php-git-53a08fd07d37062c8605202ab973f311d738c59a.tar.gz |
make type consistent with glob_t.gl_pathc
Diffstat (limited to 'ext/zip')
-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 e741226c24..45bf8afb67 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -499,7 +499,7 @@ int php_zip_glob(char *pattern, int pattern_len, zend_long flags, zval *return_v char *result; #endif glob_t globbuf; - int n; + size_t n; int ret; if (pattern_len >= MAXPATHLEN) { |