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)) {
Log in to post a comment.