mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-14 22:46:27 -04:00
cmd_ext2.c: fix compile warnings
Get rid of these warnings: cmd_ext2.c:247: warning: format '%ld' expects type 'long int', but argument 2 has type 'int' cmd_ext2.c:248: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'int' Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
28afe0160f
commit
4d9eab89b3
@ -244,8 +244,8 @@ int do_ext2load (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
|||||||
/* Loading ok, update default load address */
|
/* Loading ok, update default load address */
|
||||||
load_addr = addr;
|
load_addr = addr;
|
||||||
|
|
||||||
printf ("\n%ld bytes read\n", filelen);
|
printf ("\n%d bytes read\n", filelen);
|
||||||
sprintf(buf, "%lX", filelen);
|
sprintf(buf, "%X", filelen);
|
||||||
setenv("filesize", buf);
|
setenv("filesize", buf);
|
||||||
|
|
||||||
return(filelen);
|
return(filelen);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user