diff options
author | Xinchen Hui <laruence@gmail.com> | 2014-05-05 10:34:04 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2014-05-05 10:34:04 +0800 |
commit | cf15e94e0797bbafe89efec5176a248839250909 (patch) | |
tree | f414e70269e062a67fa9b7b9b08cab43a470b290 /ext/json/JSON_parser.h | |
parent | 41f68894366e1156191387034fc53286d9fec747 (diff) | |
parent | b30c7fe2639aba8453a4808a285fc2acea36d7bd (diff) | |
download | php-git-cf15e94e0797bbafe89efec5176a248839250909.tar.gz |
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2
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 { |