felipe                                   Tue, 30 Aug 2011 01:33:42 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=315754

Log:
- Fixed ZTS build

Changed paths:
    U   php/php-src/branches/PHP_5_4/Zend/zend_operators.c
    U   php/php-src/trunk/Zend/zend_operators.c

Modified: php/php-src/branches/PHP_5_4/Zend/zend_operators.c
===================================================================
--- php/php-src/branches/PHP_5_4/Zend/zend_operators.c  2011-08-30 01:18:48 UTC 
(rev 315753)
+++ php/php-src/branches/PHP_5_4/Zend/zend_operators.c  2011-08-30 01:33:42 UTC 
(rev 315754)
@@ -1325,13 +1325,13 @@

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


Modified: php/php-src/trunk/Zend/zend_operators.c
===================================================================
--- php/php-src/trunk/Zend/zend_operators.c     2011-08-30 01:18:48 UTC (rev 
315753)
+++ php/php-src/trunk/Zend/zend_operators.c     2011-08-30 01:33:42 UTC (rev 
315754)
@@ -1325,13 +1325,13 @@

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


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to