Skip to content

Commit ed27dbc

Browse files
Reflection: use RETURN_BOOL in _class_check_flag()
1 parent dd86a8a commit ed27dbc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ext/reflection/php_reflection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4370,7 +4370,7 @@ static void _class_check_flag(INTERNAL_FUNCTION_PARAMETERS, int mask)
43704370

43714371
ZEND_PARSE_PARAMETERS_NONE();
43724372
GET_REFLECTION_OBJECT_PTR(ce);
4373-
RETVAL_BOOL(ce->ce_flags & mask);
4373+
RETURN_BOOL(ce->ce_flags & mask);
43744374
}
43754375
/* }}} */
43764376

0 commit comments

Comments
 (0)