Skip to content

Commit cc6fa18

Browse files
Parens
1 parent 58cee12 commit cc6fa18

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ext/standard/var.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ PHPAPI void php_var_dump(zval *struc, int level) /* {{{ */
166166
break;
167167
case IS_OBJECT: {
168168
zend_class_entry *ce = Z_OBJCE_P(struc);
169-
if (ce->ce_flags & ZEND_ACC_ENUM && ce->__debugInfo == NULL) {
169+
if ((ce->ce_flags & ZEND_ACC_ENUM) && ce->__debugInfo == NULL) {
170170
zval *case_name_zval = zend_enum_fetch_case_name(Z_OBJ_P(struc));
171171
php_printf("%senum(%s::%s)\n", COMMON, ZSTR_VAL(ce->name), Z_STRVAL_P(case_name_zval));
172172
return;

0 commit comments

Comments
 (0)