helly Thu Jan 1 14:25:03 2004 EDT
Modified files:
/php-src/ext/recode recode.c
Log:
Fix ZTS build
Index: php-src/ext/recode/recode.c
diff -u php-src/ext/recode/recode.c:1.33 php-src/ext/recode/recode.c:1.34
--- php-src/ext/recode/recode.c:1.33 Mon Jul 7 09:21:10 2003
+++ php-src/ext/recode/recode.c Thu Jan 1 14:25:02 2004
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: recode.c,v 1.33 2003/07/07 13:21:10 derick Exp $ */
+/* $Id: recode.c,v 1.34 2004/01/01 19:25:02 helly Exp $ */
/* {{{ includes & prototypes */
@@ -119,7 +119,7 @@
{
php_info_print_table_start();
php_info_print_table_row(2, "Recode Support", "enabled");
- php_info_print_table_row(2, "Revision", "$Revision: 1.33 $");
+ php_info_print_table_row(2, "Revision", "$Revision: 1.34 $");
php_info_print_table_end();
}
@@ -134,7 +134,7 @@
int req_len, str_len;
char *req, *str;
- if (zend_parse_parameters(TSRMLS_CC ZEND_NUM_ARGS(), "ss", &req, &req_len,
&str, &str_len) == FAILURE) {
+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &req, &req_len,
&str, &str_len) == FAILURE) {
return;
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php