mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-18 20:10:53 +00:00
Added redundant brackets in an if statement to keep a flaky compiler happy.
This commit is contained in:
parent
9ede36a386
commit
fecc7424e4
@ -64,7 +64,7 @@ lwip_chksum(void *dataptr, int len)
|
||||
}
|
||||
acc = (acc >> 16) + (acc & 0xffffUL);
|
||||
|
||||
if(acc & 0xffff0000 != 0) {
|
||||
if((acc & 0xffff0000) != 0) {
|
||||
acc = (acc >> 16) + (acc & 0xffffUL);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user