diff options
author | Nikita Popov <nikic@php.net> | 2014-04-23 21:44:26 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2014-05-05 01:00:59 +0200 |
commit | b30c7fe2639aba8453a4808a285fc2acea36d7bd (patch) | |
tree | 519babf6fa470847a764816cc0e5345e3da88c03 /ext/json/JSON_parser.h | |
parent | 404cc45ee27a2f2bcf5c466d7c66767181e24860 (diff) | |
download | php-git-b30c7fe2639aba8453a4808a285fc2acea36d7bd.tar.gz |
Port JSON
Diffstat (limited to 'ext/json/JSON_parser.h')
-rw-r--r-- | ext/json/JSON_parser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/json/JSON_parser.h b/ext/json/JSON_parser.h index 8671765b4d..3df999c5f3 100644 --- a/ext/json/JSON_parser.h +++ b/ext/json/JSON_parser.h @@ -15,8 +15,8 @@ typedef struct JSON_parser_struct { int top; int error_code; int* stack; - zval **the_zstack; - zval *the_static_zstack[JSON_PARSER_DEFAULT_DEPTH]; + zval *the_zstack; + zval the_static_zstack[JSON_PARSER_DEFAULT_DEPTH]; } * JSON_parser; enum error_codes { |