mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
this little piggy broke lots of things...eg. _function_check_flag in reflection api.
This commit is contained in:
parent
d8a6874bf1
commit
05152d3845
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ ZEND_API ZEND_FUNCTION(display_disabled_class);
|
|||
|
||||
#define ZVAL_BOOL(z, b) { \
|
||||
(z)->type = IS_BOOL; \
|
||||
(z)->value.lval = (b != 0); \
|
||||
(z)->value.lval = ((b) != 0); \
|
||||
}
|
||||
|
||||
#define ZVAL_NULL(z) { \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue