From: Anatol Belski Date: Wed, 20 Aug 2014 16:21:57 +0000 (+0200) Subject: fix index type X-Git-Tag: POST_64BIT_BRANCH_MERGE^2~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=be1b1e7b414c41da2a0ad5ea80674fc625ceb8b4;p=php fix index type --- diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index bb2918af62..64e4cb7249 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -1944,7 +1944,7 @@ ZEND_FUNCTION(get_resources) { zend_string *type = NULL; zend_string *key; - ulong index; + zend_uint_t index; zval *val; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|S", &type) == FAILURE) {