mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 04:26:19 -04:00
kwbimage.c: Fix compile warning when building on 64 bit systems (again)
Commit 51003b89 attempted to fix a build problem on 64 bit systems, but just turned it into a build problem on 32 bit systems (silly me). Now do the Right Thing (TM) and use a "%zu" printf format. Also fix spelling error. Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
6c7bc91fb3
commit
ceb2d57c22
@ -131,7 +131,7 @@ static uint32_t kwbimage_checksum32 (uint32_t *start, uint32_t len, uint32_t csu
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (len % sizeof(uint32_t)) {
|
if (len % sizeof(uint32_t)) {
|
||||||
printf ("Error:%s[%d] - lenght is not in multiple of %ld\n",
|
printf ("Error:%s[%d] - length is not in multiple of %zu\n",
|
||||||
__FUNCTION__, len, sizeof(uint32_t));
|
__FUNCTION__, len, sizeof(uint32_t));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user