From: Benno Schulenberg Date: Fri, 4 Oct 2013 19:59:02 +0000 (+0200) Subject: hexsyntax: in help text, wrap argument of option -e in angular brackets X-Git-Tag: v2.24-rc2~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=98063fc7befba7648bff56d06b07e7ddd28f3d0c;p=thirdparty%2Futil-linux.git hexsyntax: in help text, wrap argument of option -e in angular brackets Reported-by: Petr Písař Signed-off-by: Benno Schulenberg --- diff --git a/text-utils/hexsyntax.c b/text-utils/hexsyntax.c index 2910ca54bb..1b8040ced7 100644 --- a/text-utils/hexsyntax.c +++ b/text-utils/hexsyntax.c @@ -147,7 +147,7 @@ void __attribute__((__noreturn__)) usage(FILE *out) fputs(_(" -d, --two-bytes-decimal two-byte decimal display\n"), out); fputs(_(" -o, --two-bytes-octal two-byte octal display\n"), out); fputs(_(" -x, --two-bytes-hex two-byte hexadecimal display\n"), out); - fputs(_(" -e, --format format format string to be used for displaying data\n"), out); + fputs(_(" -e, --format format string to be used for displaying data\n"), out); fputs(_(" -f, --format-file file that contains format strings\n"), out); fputs(_(" -n, --length interpret only length bytes of input\n"), out); fputs(_(" -s, --skip skip offset bytes from the beginning\n"), out);