fix -Wparentheses warning
Signed-off-by: Masanori Ogino <mogino@acm.org>
This commit is contained in:
parent
712650b891
commit
7ed78cdf8d
4 changed files with 35 additions and 35 deletions
|
|
@ -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++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue