diff options
author | Anatol Belski <ab@php.net> | 2014-09-12 16:22:42 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-09-12 21:35:19 +0200 |
commit | 7ea780dd6e5e9af46b553d2b98097362d943a4e8 (patch) | |
tree | 7ccfb4432c822fc1af57b22390cb783da3765b2f /ext/zip/php_zip.c | |
parent | 9adf0c8e0793be7ed010d0ec2e735e295da0273b (diff) | |
download | php-git-7ea780dd6e5e9af46b553d2b98097362d943a4e8.tar.gz |
fix type
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 734ee19d0e..5f98a639e1 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -956,7 +956,7 @@ static HashTable *php_zip_get_properties(zval *object TSRMLS_DC)/* {{{ */ HashTable *props; zip_prop_handler *hnd; zend_string *key; - ulong num_key; + zend_ulong num_key; obj = Z_ZIP_P(object); props = zend_std_get_properties(object TSRMLS_CC); |