From: Baruch Siach Date: Sun, 29 Aug 2010 07:36:49 +0000 (+0300) Subject: nandwrite: allow hex values in the -s parameter X-Git-Tag: 1_18_0~301 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a78227dc7320738ec930edbde1aaa0023a51ee4c;p=oweals%2Fbusybox.git nandwrite: allow hex values in the -s parameter Signed-off-by: Baruch Siach Signed-off-by: Denys Vlasenko --- diff --git a/miscutils/nandwrite.c b/miscutils/nandwrite.c index a20f7f384..d0e4397fb 100644 --- a/miscutils/nandwrite.c +++ b/miscutils/nandwrite.c @@ -71,7 +71,7 @@ int nandwrite_main(int argc UNUSED_PARAM, char **argv) fd = xopen(argv[0], O_RDWR); xioctl(fd, MEMGETINFO, &meminfo); - mtdoffset = xatou(opt_s); + mtdoffset = bb_strtou(opt_s, NULL, 0); /* Pull it into a CPU register (hopefully) - smaller code that way */ meminfo_writesize = meminfo.writesize;