mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
fix datatype mismatches
This commit is contained in:
parent
12fff5251b
commit
ef2fd13de8
3 changed files with 7 additions and 7 deletions
|
@ -25,11 +25,11 @@
|
|||
typedef struct _php_json_parser {
|
||||
php_json_scanner scanner;
|
||||
zval *return_value;
|
||||
long depth;
|
||||
long max_depth;
|
||||
int depth;
|
||||
int max_depth;
|
||||
} php_json_parser;
|
||||
|
||||
void php_json_parser_init(php_json_parser *parser, zval *return_value, char *str, size_t str_len, long options, long max_depth);
|
||||
void php_json_parser_init(php_json_parser *parser, zval *return_value, char *str, size_t str_len, int options, int max_depth);
|
||||
|
||||
php_json_error_code php_json_parser_error_code(php_json_parser *parser);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue