1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00

- Fixed ZTS build

This commit is contained in:
Felipe Pena
2011-08-30 01:33:42 +00:00
parent 6affeb6b60
commit cb74745d2f

View File

@@ -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);
}
/* }}} */