summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/utils/parse_options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/parse_options.c b/lib/utils/parse_options.c
index 21f007f0..744dccdc 100644
--- a/lib/utils/parse_options.c
+++ b/lib/utils/parse_options.c
@@ -40,7 +40,7 @@ void parse_usage_and_die(const char * const * usage, const struct options *opt)
pos += fprintf(stderr, "--%s", opt->long_name);
if (opt->argh)
- pos += fprintf(stderr, " <%s>", opt->argh);
+ pos += fprintf(stderr, " %s", opt->argh);
if (pos <= USAGE_OPTS_WIDTH)
pad = USAGE_OPTS_WIDTH - pos;