diff options
author | Anatol Belski <ab@php.net> | 2014-08-27 20:42:47 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-27 20:49:37 +0200 |
commit | bf96ee95cea4793b21abd5462a69fa3945f09fe7 (patch) | |
tree | 1f853c4dea13c73f618c0bbb1ef89a80590a5123 /ext/zip/php_zip.c | |
parent | 6db8d4f829553f61822a794f94c55270e5478a13 (diff) | |
download | php-git-bf96ee95cea4793b21abd5462a69fa3945f09fe7.tar.gz |
's' works with size_t round 4
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 fd6953a76b..734ee19d0e 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -311,7 +311,7 @@ static int php_zip_add_file(struct zip *za, const char *filename, size_t filenam } /* }}} */ -static int php_zip_parse_options(zval *options, zend_long *remove_all_path, char **remove_path, int *remove_path_len, char **add_path, int *add_path_len TSRMLS_DC) /* {{{ */ +static int php_zip_parse_options(zval *options, zend_long *remove_all_path, char **remove_path, size_t *remove_path_len, char **add_path, size_t *add_path_len TSRMLS_DC) /* {{{ */ { zval *option; if ((option = zend_hash_str_find(HASH_OF(options), "remove_all_path", sizeof("remove_all_path") - 1)) != NULL) { |