Hi, i noticed during compiling the source of

784f75 master

https://sourceforge.net/p/wsjt/wsjtx/ci/master/tree/lib/qra/qra64/qra64.c:245

if ((x[9]&0x80)==1)
return;

warning: bitwise comparison always evaluates to false

guessing it should be

if (x[9]&0x80)
return;



_______________________________________________
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel

Reply via email to