From 00bcf9d3e2d9967aa91db9653aed0f659ff18728 Mon Sep 17 00:00:00 2001 From: Jimmy Ohn Date: Mon, 22 Jun 2020 12:19:28 +0900 Subject: [PATCH] tools:discoverer: Remove short name for use-cache There is no need to add short name for 'use-cache'. The 'async' option already has 'a' short name. Part-of: --- tools/gst-discoverer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gst-discoverer.c b/tools/gst-discoverer.c index 24de51fef9..5bd27ac9f3 100644 --- a/tools/gst-discoverer.c +++ b/tools/gst-discoverer.c @@ -637,7 +637,7 @@ main (int argc, char **argv) GOptionEntry options[] = { {"async", 'a', 0, G_OPTION_ARG_NONE, &async, "Run asynchronously", NULL}, - {"use-cache", 'a', 0, G_OPTION_ARG_NONE, &use_cache, + {"use-cache", 0, 0, G_OPTION_ARG_NONE, &use_cache, "Use GstDiscovererInfo from our cache.", NULL}, {"print-cache-dir", 0, 0, G_OPTION_ARG_NONE, &print_cache_dir, "Print the directory of the discoverer cache.", NULL},