mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
Fix some more print() format errors.
Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
4109df6f75
commit
9b55a25369
26 changed files with 73 additions and 63 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue