From: Martin Mares Date: Sun, 28 Apr 2013 21:42:35 +0000 (+0200) Subject: Opt: Fixed a couple of randomly found typos X-Git-Tag: v5.99~25^2~55 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=d824ff891e0a3d36d6c366a14ed2401cbc4401a2;p=libucw.git Opt: Fixed a couple of randomly found typos --- diff --git a/ucw/opt.c b/ucw/opt.c index 92c7a737..0ae40a90 100644 --- a/ucw/opt.c +++ b/ucw/opt.c @@ -112,7 +112,7 @@ static struct opt_item * opt_find_item_longopt_section(char * str, struct opt_se struct opt_item * out = opt_find_item_longopt_section(str, item->u.section); if (out) { if (candidate) - opt_failure("Ambiguos prefix %s: Found matching %s and %s.\n", str, candidate->name, item->name); + opt_failure("Ambiguous prefix %s: Found matching %s and %s.\n", str, candidate->name, item->name); else candidate = out; } @@ -121,7 +121,7 @@ static struct opt_item * opt_find_item_longopt_section(char * str, struct opt_se return item; if (candidate) - opt_failure("Ambiguos prefix %s: Found matching %s and %s.\n", str, candidate->name, item->name); + opt_failure("Ambiguous prefix %s: Found matching %s and %s.\n", str, candidate->name, item->name); else candidate = item; }