From f74d6024490d9e10566b482b8d1980894cd696cc Mon Sep 17 00:00:00 2001 From: Jehan Date: Mon, 27 Apr 2020 15:24:17 +0200 Subject: [PATCH] src: fix the usage of `uchardet` tool. It was displaying -v for both verbose and version options. The new --verbose short option is actually -V (uppercase). --- src/tools/uchardet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/uchardet.cpp b/src/tools/uchardet.cpp index ebc55a4..2ad38af 100644 --- a/src/tools/uchardet.cpp +++ b/src/tools/uchardet.cpp @@ -117,7 +117,7 @@ static void show_usage() printf("Options:\n"); printf(" -v, --version Print version and build information.\n"); printf(" -h, --help Print this help.\n"); - printf(" -v, --verbose Show all candidates and their confidence value.\n"); + printf(" -V, --verbose Show all candidates and their confidence value.\n"); printf("\n"); }