Skip to content

Commit

Permalink
Fix missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
penguin-teal committed Nov 10, 2023
1 parent d806732 commit ec6945c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appArgs.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static struct argp_option options[] =
{ "hash-nul", OPT_HASH_NUL , 0 , 0, "When using auto length, includes the terminating NUL (\\0) in the hash.", 1 },
{ "annotate", OPT_ANNOTATE , 0 , 0, "Annotate output with radix prefixes and index/size info.", 1 },
{ "escape", OPT_ESCAPE , 0 , 0, "Character escape sequences.", 1 },
{ "multi", OPT_MULTI , 0 , 0, "Split into multiple strings to hash by line feed ('\n', ASCII 0xA)." }
{ "multi", OPT_MULTI , 0 , 0, "Split into multiple strings to hash by line feed ('\n', ASCII 0xA).", 1 },

{ 0 , 0 , 0 , 0, "Print Number Format:", 2 },
{ "hex" , OPT_HEX , 0 , 0, "Prints as (a) hexadecimal base-16 number(s).", 2 },
Expand Down

0 comments on commit ec6945c

Please sign in to comment.