From 29ceb564f859681e0ab95b27ea6bed00123d38ce Mon Sep 17 00:00:00 2001 From: Jerry Yu Date: Fri, 10 Dec 2021 23:38:57 +0800 Subject: [PATCH] fix help message issues Signed-off-by: Jerry Yu --- programs/test/query_compile_time_config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/test/query_compile_time_config.c b/programs/test/query_compile_time_config.c index 0bc9dee930..6d92de3100 100644 --- a/programs/test/query_compile_time_config.c +++ b/programs/test/query_compile_time_config.c @@ -29,13 +29,13 @@ #endif #define USAGE \ - "usage: %s | -l\n\n" \ + "usage: %s [ | -l ]\n\n" \ "This program takes one command line argument which corresponds to\n" \ "the string representation of a Mbed TLS compile time configuration.\n" \ "The value 0 will be returned if this configuration is defined in the\n" \ "Mbed TLS build and the macro expansion of that configuration will be\n" \ "printed (if any). Otherwise, 1 will be returned.\n" \ - "-l\tPrint all available configuration" + "-l\tPrint all available configuration.\n" #include #include "query_config.h"