From b35ff884484d8cc4a710f768a103f81f6148793e Mon Sep 17 00:00:00 2001 From: Hans Petter Selasky Date: Wed, 25 Nov 2015 14:51:44 +0000 Subject: [PATCH] Update usage: - Add missing description of "-c" option. - Add one more usage example. --- tools/tools/indent_wrapper/indent_wrapper.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/tools/indent_wrapper/indent_wrapper.c b/tools/tools/indent_wrapper/indent_wrapper.c index 537efb02c076..d9aab17a0894 100644 --- a/tools/tools/indent_wrapper/indent_wrapper.c +++ b/tools/tools/indent_wrapper/indent_wrapper.c @@ -354,13 +354,15 @@ usage(void) "\t" "-v Increase verbosity\n" "\t" "-d Check output from git diff\n" "\t" "-D Check output from svn diff\n" + "\t" "-c Set custom command to produce diff\n" "\t" "-g Check output from git hash\n" "\t" "-s Check output from svn revision\n" "\t" "-t Launch external diff tool\n" "\n" "Examples:\n" "\t" "indent_wrapper -D\n" - "\t" "indent_wrapper -D -t meld\n"); + "\t" "indent_wrapper -D -t meld\n" + "\t" "indent_wrapper -D -t \"diff -u\"\n"); exit(EX_SOFTWARE); }