From: Rafał Miłecki Date: Fri, 10 Jun 2016 11:08:38 +0000 (+0200) Subject: mtd: fix typo in error message for 'c' option X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4b03e4ac3bb68b6be5508de4ada07ca443f36a9d;p=librecmc%2Flibrecmc.git mtd: fix typo in error message for 'c' option Signed-off-by: Rafał Miłecki --- diff --git a/package/system/mtd/src/mtd.c b/package/system/mtd/src/mtd.c index af544198cb..284c8791dd 100644 --- a/package/system/mtd/src/mtd.c +++ b/package/system/mtd/src/mtd.c @@ -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;