mtd: fix typo in error message for 'c' option

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
lede-17.01
Rafał Miłecki 2016-06-10 13:08:38 +02:00
parent c40e96d133
commit 4b03e4ac3b
1 changed files with 1 additions and 1 deletions

View File

@ -859,7 +859,7 @@ int main (int argc, char **argv)
errno = 0;
data_size = strtoul(optarg, 0, 0);
if (errno) {
fprintf(stderr, "-d: illegal numeric string\n");
fprintf(stderr, "-c: illegal numeric string\n");
usage();
}
break;