Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/42ffcec3f9eba010a662d5b42981812b6bebfb9a You should set ROOT_URL correctly, otherwise the web may not work correctly.

cmd_nand.c: fix another 'incompatible pointer type' warning.

Signed-off-by: Wolfgang Denk <wd@denx.de>
master
Wolfgang Denk 17 years ago
parent de109d9097
commit 42ffcec3f9
  1. 2
      common/cmd_nand.c

@ -110,7 +110,7 @@ arg_off_size(int argc, char *argv[], nand_info_t *nand, ulong *off, size_t *size
}
*off = part->offset;
if (argc >= 2) {
if (!(str2long(argv[1], size))) {
if (!(str2long(argv[1], (ulong *)size))) {
printf("'%s' is not a number\n", argv[1]);
return -1;
}

Loading…
Cancel
Save