spinhawk icon indicating copy to clipboard operation
spinhawk copied to clipboard

ctcadpt.c:2240: bad test ?

Open dcb314 opened this issue 5 years ago • 0 comments

ctcadpt.c:2240:20: warning: logical 'and' of mutually exclusive tests is always false [-Wlogical-op]

Source code is

if( (argc < 3) && (argc > 5) )

Maybe better code:

if( (argc < 3) || (argc > 5) )

dcb314 avatar Nov 27 '19 20:11 dcb314