diff options
author | Brian Norris <computersforpeace@gmail.com> | 2010-11-29 00:01:55 -0800 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-12-02 05:25:05 +0200 |
commit | 340ccfc90f78e3fb762ce3da1ed5fbcd2e02a2bf (patch) | |
tree | 10d18b10658fd3a64b0606bd19dcfa9624749ed5 | |
parent | ae1cb618abbc591b7a63a09bc927f37968f889af (diff) |
nanddump/nandwrite: use "simple_" str functions
Per Mike Frysinger's suggestion, we check for strtoll() and strtoull()
errors by using the "common.h" helper functions simple_strtoll() and
simple_strtoull().
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
-rw-r--r-- | nanddump.c | 4 | ||||
-rw-r--r-- | nandwrite.c | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -136,7 +136,7 @@ static void process_options(int argc, char * const argv[]) omitbad = true; break; case 's': - start_addr = strtoull(optarg, NULL, 0); + start_addr = simple_strtoull(optarg, &error); break; case 'f': if (!(dumpfile = strdup(optarg))) { @@ -145,7 +145,7 @@ static void process_options(int argc, char * const argv[]) } break; case 'l': - length = strtoull(optarg, NULL, 0); + length = simple_strtoull(optarg, &error); break; case 'o': omitoob = true; diff --git a/nandwrite.c b/nandwrite.c index bbe69b0..5373a89 100644 --- a/nandwrite.c +++ b/nandwrite.c @@ -201,7 +201,7 @@ static void process_options(int argc, char * const argv[]) writeoob = true; break; case 's': - mtdoffset = strtoll(optarg, NULL, 0); + mtdoffset = simple_strtoll(optarg, &error); break; case 'b': blockalign = atoi(optarg); |