From d824ff891e0a3d36d6c366a14ed2401cbc4401a2 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 28 Apr 2013 23:42:35 +0200 Subject: [PATCH] Opt: Fixed a couple of randomly found typos --- ucw/opt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.5