mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +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
|
@ -886,9 +886,9 @@ int do_nand (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
|
|||
return 1;
|
||||
}
|
||||
|
||||
printf ("\nNAND %s: device %d offset %ld, size %ld ...\n",
|
||||
printf ("\nNAND %s: device %d offset %ld, size %lu ...\n",
|
||||
(cmd & NANDRW_READ) ? "read" : "write",
|
||||
curr_device, off, size);
|
||||
curr_device, off, (ulong)size);
|
||||
|
||||
ret = nand_legacy_rw (nand_dev_desc + curr_device,
|
||||
cmd, off, size,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue