cmd_nand: fix warning: str2long ncompatible pointer type
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
This commit is contained in:
parent
1b9ed2574a
commit
12bc4e9425
|
|
@ -110,7 +110,7 @@ arg_off_size(int argc, char *argv[], nand_info_t *nand, ulong *off, size_t *size
|
||||||
}
|
}
|
||||||
*off = part->offset;
|
*off = part->offset;
|
||||||
if (argc >= 2) {
|
if (argc >= 2) {
|
||||||
if (!(str2long(argv[1], size))) {
|
if (!(str2long(argv[1], (ulong *)size))) {
|
||||||
printf("'%s' is not a number\n", argv[1]);
|
printf("'%s' is not a number\n", argv[1]);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue