summaryrefslogtreecommitdiff
path: root/ext/zip/php_zip.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-09-12 16:22:42 +0200
committerAnatol Belski <ab@php.net>2014-09-12 21:35:19 +0200
commit7ea780dd6e5e9af46b553d2b98097362d943a4e8 (patch)
tree7ccfb4432c822fc1af57b22390cb783da3765b2f /ext/zip/php_zip.c
parent9adf0c8e0793be7ed010d0ec2e735e295da0273b (diff)
downloadphp-git-7ea780dd6e5e9af46b553d2b98097362d943a4e8.tar.gz
fix type
Diffstat (limited to 'ext/zip/php_zip.c')
-rw-r--r--ext/zip/php_zip.c2
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);