mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
Fix some more print() format errors.
Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
@@ -1520,7 +1520,8 @@ NetReceive(volatile uchar * inpkt, int len)
|
||||
xsum = (xsum & 0x0000ffff) + ((xsum >> 16) & 0x0000ffff);
|
||||
}
|
||||
if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
|
||||
printf(" UDP wrong checksum %08x %08x\n", xsum, ntohs(ip->udp_xsum));
|
||||
printf(" UDP wrong checksum %08lx %08x\n",
|
||||
xsum, ntohs(ip->udp_xsum));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user