diff options
author | Anatol Belski <ab@php.net> | 2015-08-07 10:11:52 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-08-07 10:12:20 +0200 |
commit | 07f8845205e8ccf5124a8c44748be0dc77674536 (patch) | |
tree | 45281f8424a8d1c9baf494c51e7483709d192410 /ext/soap/php_http.c | |
parent | 0de4e57ccea9c0a7b81aa0f03b5a722f55b32195 (diff) | |
download | php-git-07f8845205e8ccf5124a8c44748be0dc77674536.tar.gz |
fix datatype
Diffstat (limited to 'ext/soap/php_http.c')
-rw-r--r-- | ext/soap/php_http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_http.c b/ext/soap/php_http.c index 61573eb77e..e85ed68381 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -815,7 +815,7 @@ try_again: zend_hash_internal_pointer_reset(Z_ARRVAL_P(cookies)); smart_str_append_const(&soap_headers, "Cookie: "); for (i = 0; i < n; i++) { - ulong numindx; + zend_ulong numindx; int res = zend_hash_get_current_key(Z_ARRVAL_P(cookies), &key, &numindx); data = zend_hash_get_current_data(Z_ARRVAL_P(cookies)); |