Menu

#161 src/svf/svf.c:1314: bad if ?

0.9.0
new
nobody
None
2017-08-25
2017-08-25
dcb
No

src/svf/svf.c:1314:26: warning: logical 'and' of mutually exclusive tests is always false [-Wlogical-op]

Source code is

    if ((num_of_argu < 3) && (num_of_argu > 11)) {

Maybe better code:

    if ((num_of_argu < 3) || (num_of_argu > 11)) {

Discussion


Log in to post a comment.

MongoDB Logo MongoDB