Skip to content

Commit f3e8675

Browse files
committed
Added folder marks
1 parent 7a0e68b commit f3e8675

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Zend/zend_operators.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1759,14 +1759,15 @@ static inline void zend_free_obj_get_result(zval *op) /* {{{ */
17591759
}
17601760
/* }}} */
17611761

1762-
static void ZEND_FASTCALL convert_compare_result_to_long(zval *result)
1762+
static void ZEND_FASTCALL convert_compare_result_to_long(zval *result) /* {{{ */
17631763
{
17641764
if (Z_TYPE_P(result) == IS_DOUBLE) {
17651765
ZVAL_LONG(result, ZEND_NORMALIZE_BOOL(Z_DVAL_P(result)));
17661766
} else {
17671767
convert_to_long(result);
17681768
}
17691769
}
1770+
/* }}} */
17701771

17711772
ZEND_API int ZEND_FASTCALL compare_function(zval *result, zval *op1, zval *op2) /* {{{ */
17721773
{

0 commit comments

Comments
 (0)