mirror of
https://xff.cz/git/u-boot/
synced 2025-09-03 09:42:22 +02:00
Fix some more print() format errors.
Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
@@ -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,
|
||||
|
Reference in New Issue
Block a user