From 50e34b45c2d332b9575bc5c23eb872bdbc3dec4e Mon Sep 17 00:00:00 2001 From: Tyler Hicks Date: Tue, 30 Jul 2019 19:08:39 +0000 Subject: [PATCH] parser: Fix minor typo in usage Correct the long option used to print the cache directory. Fixes: e9d9395f91cd ("parser: Add option to print the cache directory") Signed-off-by: Tyler Hicks --- parser/parser_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/parser_main.c b/parser/parser_main.c index 2b518d83e..2c763019d 100644 --- a/parser/parser_main.c +++ b/parser/parser_main.c @@ -206,7 +206,7 @@ static void display_usage(const char *command) " --skip-bad-cache Don't clear cache if out of sync\n" " --purge-cache Clear cache regardless of its state\n" " --debug-cache Debug cache file checks\n" - " --print-cache_dir Print the cache directory path\n" + " --print-cache-dir Print the cache directory path\n" "-L, --cache-loc n Set the location of the profile caches\n" "-q, --quiet Don't emit warnings\n" "-v, --verbose Show profile names as they load\n"