From: Felipe Pena Date: Tue, 30 Aug 2011 01:33:42 +0000 (+0000) Subject: - Fixed ZTS build X-Git-Tag: php-5.4.0beta1~341 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=895a10caf1b25a7f8c63b39ec0a504099db81ab5;p=php - Fixed ZTS build --- diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 35a545145c..259d78005d 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -1325,13 +1325,13 @@ ZEND_API int string_compare_function_ex(zval *result, zval *op1, zval *op2, zend ZEND_API int string_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ */ { - return string_compare_function_ex(result, op1, op2, 0); + return string_compare_function_ex(result, op1, op2, 0 TSRMLS_CC); } /* }}} */ ZEND_API int string_case_compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ */ { - return string_compare_function_ex(result, op1, op2, 1); + return string_compare_function_ex(result, op1, op2, 1 TSRMLS_CC); } /* }}} */