From f15d097f29a753cb2f606bc460f0048f241a64d7 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 add141c..eeeb18d 100644 --- a/src/tools/uchardet.cpp +++ b/src/tools/uchardet.cpp @@ -115,7 +115,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"); }