From 907b5fd8dae753b1bf0d123f8266dd12cb6e4b70 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 16 Jan 2015 17:10:36 +0100 Subject: [PATCH] fix build --- php_raphf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.30.2