diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-04-20 18:14:37 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-04-20 18:14:37 +0300 |
commit | 1e9b0691a9c52f8b56abc10a214a8aaa228b361b (patch) | |
tree | 0a6c23bcbcca951b69a664e1367817aeda59ca0f /ubi-utils/new-utils/src/ubiattach.c | |
parent | 49953500edc32e949b5f567fca67ed5430a68540 (diff) |
ubi-utils: various clean-ups and preparations
This patch introduces many clean-ups, nicifications and preparations
to the following ubiformat utility. There are also fixes.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/new-utils/src/ubiattach.c')
-rw-r--r-- | ubi-utils/new-utils/src/ubiattach.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ubi-utils/new-utils/src/ubiattach.c b/ubi-utils/new-utils/src/ubiattach.c index 04a2f9c..3e19eca 100644 --- a/ubi-utils/new-utils/src/ubiattach.c +++ b/ubi-utils/new-utils/src/ubiattach.c @@ -84,7 +84,7 @@ static int parse_opt(int argc, char * const argv[]) int key; char *endp; - key = getopt_long(argc, argv, "m:d:OhV", long_options, NULL); + key = getopt_long(argc, argv, "m:d:O:hV", long_options, NULL); if (key == -1) break; @@ -103,7 +103,7 @@ static int parse_opt(int argc, char * const argv[]) break; - case 'o': + case 'O': args.vidoffs = strtoul(optarg, &endp, 0); if (*endp != '\0' || endp == optarg || args.vidoffs <= 0) return errmsg("bad VID header offset: \"%s\"", optarg); |