From f3e8675d380af8c2fe632b9133ddcc7b1a304f49 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Thu, 10 Sep 2015 15:01:28 +0800 Subject: [PATCH] Added folder marks --- Zend/zend_operators.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 426a85ffe8..2345e0b2d4 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -1759,7 +1759,7 @@ static inline void zend_free_obj_get_result(zval *op) /* {{{ */ } /* }}} */ -static void ZEND_FASTCALL convert_compare_result_to_long(zval *result) +static void ZEND_FASTCALL convert_compare_result_to_long(zval *result) /* {{{ */ { if (Z_TYPE_P(result) == IS_DOUBLE) { ZVAL_LONG(result, ZEND_NORMALIZE_BOOL(Z_DVAL_P(result))); @@ -1767,6 +1767,7 @@ static void ZEND_FASTCALL convert_compare_result_to_long(zval *result) convert_to_long(result); } } +/* }}} */ ZEND_API int ZEND_FASTCALL compare_function(zval *result, zval *op1, zval *op2) /* {{{ */ { -- 2.40.0