From: Michael Wallner Date: Fri, 16 Jan 2015 16:10:36 +0000 (+0100) Subject: fix build X-Git-Tag: release-2.0.0RC1~23 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=907b5fd8dae753b1bf0d123f8266dd12cb6e4b70;p=m6w6%2Fext-raphf fix build --- diff --git a/php_raphf.c b/php_raphf.c index 811464b..cb2352e 100644 --- a/php_raphf.c +++ b/php_raphf.c @@ -384,14 +384,14 @@ void *php_persistent_handle_acquire(php_persistent_handle_factory_t *a, void *in { int key; zval *p; - ulong index; + zend_ulong index; void *handle = NULL; php_persistent_handle_list_t *list; list = php_persistent_handle_list_find(a->provider, a->ident.str, a->ident.len); if (list) { zend_hash_internal_pointer_end(&list->free); - key = zend_hash_get_current_key(&list->free, NULL, &index, 0); + key = zend_hash_get_current_key(&list->free, NULL, &index); p = zend_hash_get_current_data(&list->free); if (p && HASH_KEY_NON_EXISTENT != key) { handle = Z_PTR_P(p);