fix -Wparentheses warning

Signed-off-by: Masanori Ogino <mogino@acm.org>
This commit is contained in:
SASANO Takayoshi 2023-11-29 21:18:00 +09:00 committed by Masanori Ogino
commit 7ed78cdf8d
4 changed files with 35 additions and 35 deletions

View file

@ -77,7 +77,7 @@ unsigned char *s;
unsigned short i;
unsigned char *d = s;
while (i = *s++) {
while ((i = *s++)) {
if (iseuckana(i)) {
if (*s) {
*d++ = *s++;