We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building on FreeBSD 13.1 and 13.2 gives this warning:
--- aq_ring.o --- aq_ring.c:364:37: warning: bitwise comparison always evaluates to false [-Wtautological-bitwise-compare] if ((rx_desc->wb.pkt_type & 0x60) == 1) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~ 1 warning generated.
This looks like it really should be != 0, but it could also be that it should be == 0. Either way, this is a bug.
!= 0
== 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Building on FreeBSD 13.1 and 13.2 gives this warning:
This looks like it really should be
!= 0
, but it could also be that it should be== 0
. Either way, this is a bug.The text was updated successfully, but these errors were encountered: