From cc6441bc7cdca9bfd98dabd55d929f1f7ffa9f3b Mon Sep 17 00:00:00 2001 From: SuperNovaa41 Date: Fri, 7 Feb 2025 12:56:31 -0500 Subject: [PATCH] fixes help message --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 703838e..2c8939e 100644 --- a/src/main.c +++ b/src/main.c @@ -10,7 +10,7 @@ const char* argp_program_version = "xxd 0.1"; const char* argp_program_bug_address = "supernovaa41@gmx.com"; static char doc[] = "Creates a hex dump of the given file."; -static char args_doc[] = "[INFILE] ([OUTFILE])"; +static char args_doc[] = "INFILE [OUTFILE]"; static struct argp_option options[] = { {"cols", 'c', "cols", 0, "format octets per line. Default 16.", 0}, {"octets", 'g', "bytes", 0, "number of octets per group in normal output. Default 2.", 0},