From 810c9dd96368af6f3f2adb766276fa0cc84aee98 Mon Sep 17 00:00:00 2001 From: "Frank M. Kromann" Date: Thu, 2 May 2002 17:54:54 +0000 Subject: [PATCH] Changed & to &&. --- ext/mbstring/mbfilter_tw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]; } } -- 2.50.1