diff options
author | Anatol Belski <ab@php.net> | 2014-08-27 22:05:26 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-27 22:05:26 +0200 |
commit | 074c68e9ce0a22d767b600b6fcea6ca777e53ada (patch) | |
tree | 2712827f1ac2699ff9aa20d92d40bd7e7ae14954 /ext/json/php_json.h | |
parent | 039f5122895c6d2a0fd9ce63ade6137de006b555 (diff) | |
download | php-git-074c68e9ce0a22d767b600b6fcea6ca777e53ada.tar.gz |
fix signature
Diffstat (limited to 'ext/json/php_json.h')
-rw-r--r-- | ext/json/php_json.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/php_json.h b/ext/json/php_json.h index 59d65ec3c8..1a4fb1703b 100644 --- a/ext/json/php_json.h +++ b/ext/json/php_json.h @@ -50,7 +50,7 @@ ZEND_END_MODULE_GLOBALS(json) #endif PHP_JSON_API void php_json_encode(smart_str *buf, zval *val, int options TSRMLS_DC); -PHP_JSON_API void php_json_decode_ex(zval *return_value, char *str, int str_len, int options, zend_long depth TSRMLS_DC); +PHP_JSON_API void php_json_decode_ex(zval *return_value, char *str, size_t str_len, int options, zend_long depth TSRMLS_DC); extern PHP_JSON_API zend_class_entry *php_json_serializable_ce; |