9
0
Fork 0

add brackets

This commit is contained in:
Sascha Hauer 2007-09-28 10:26:06 +02:00
parent 63c292b019
commit 7596ab2048
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ static int do_alternate (cmd_tbl_t *cmdtp, int argc, char *argv[])
printf("bitcount : %d\n", bitcount);
free(buf);
return bitcount & 1 ? 2 : 3;
return (bitcount & 1) ? 2 : 3;
}
static __maybe_unused char cmd_alternate_help[] =