From 1dee093bbdee5cf1e2117eda14d776957862761c 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 a566cbb..4f99ca9 100644 --- a/src/tools/uchardet.cpp +++ b/src/tools/uchardet.cpp @@ -118,7 +118,7 @@ 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"); }