Skip to content

Commit 9fbc317

Browse files
committed
Fix incorrect usage of zend_bool in Zend globals
1 parent be540b3 commit 9fbc317

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Zend/zend_globals.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ struct _zend_compiler_globals {
8181

8282
HashTable *auto_globals;
8383

84-
zend_bool parse_error;
84+
/* Refer to zend_yytnamerr() in zend_language_parser.y for meaning of values */
85+
zend_uchar parse_error;
8586
zend_bool in_compilation;
8687
zend_bool short_tags;
8788

0 commit comments

Comments
 (0)