1
0
Fork 0

remove warning calling u_strcmp

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@509 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
Xuefer 2008-01-05 09:42:09 +00:00
parent 470c2fcee8
commit decd2ba8c3
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ static void xc_fix_method(xc_processor_t *processor, zend_op_array *dst TSRMLS_D
if (UG(unicode)) {
#define SET_IF_SAME_NAME(member) \
do { \
if (srcce->member && u_strcmp(ZSTR_S(zf->common.function_name), ZSTR_S(srcce->member->common.function_name)) == 0) { \
if (srcce->member && u_strcmp(ZSTR_U(zf->common.function_name), ZSTR_U(srcce->member->common.function_name)) == 0) { \
ce->member = zf; \
} \
} \