Added redundant brackets in an if statement to keep a flaky compiler happy.

This commit is contained in:
likewise 2002-10-20 15:20:30 +00:00
parent 9ede36a386
commit fecc7424e4

View File

@ -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);
}