Browse Source

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

Signed-off-by: Wolfgang Denk <wd@denx.de>
Wolfgang Denk 17 years ago
parent
commit
42ffcec3f9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      common/cmd_nand.c

+ 1 - 1
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;
 				}