From: Frank M. Kromann Date: Thu, 2 May 2002 17:54:54 +0000 (+0000) Subject: Changed & to &&. X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~282 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=810c9dd96368af6f3f2adb766276fa0cc84aee98;p=php Changed & to &&. --- diff --git a/ext/mbstring/mbfilter_tw.c b/ext/mbstring/mbfilter_tw.c index 1ff226b134..720abedee3 100644 --- a/ext/mbstring/mbfilter_tw.c +++ b/ext/mbstring/mbfilter_tw.c @@ -128,10 +128,10 @@ mbfl_filt_conv_euctw_wchar(int c, mbfl_convert_filter *filter TSRMLS_DC) s = (c1 & 0xff)*94 + c - 0xa1; w = 0; if (s >= 0) { - if (plane == 1 & s < cns11643_2_ucs_table_size) { + if (plane == 1 && s < cns11643_2_ucs_table_size) { w = cns11643_2_ucs_table[s]; } - if (plane == 13 & s < cns11643_14_ucs_table_size) { + if (plane == 13 && s < cns11643_14_ucs_table_size) { w = cns11643_14_ucs_table[s]; } }