https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200987
Bug ID: 200987
Summary: sys/dev/ixgbe/ixgbe.c:1058: bad if statement ?
Product: Base System
Version: 10.1-RELEASE
Hardware: Any
OS: Any
Status: New
Severity: Affects Some People
Priority: ---
Component: misc
Assignee: [email protected]
Reporter: [email protected]
sys/dev/ixgbe/ixgbe.c:1058]: (warning)
Logical disjunction always evaluates to true: EXPR != 160 || EXPR != 162.
if ((i2c.dev_addr != 0xA0) || (i2c.dev_addr != 0xA2)){
Maybe
if ((i2c.dev_addr != 0xA0) && (i2c.dev_addr != 0xA2)){
--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"