From 6895c05321217eb5a55a99fb51791484cd595d3f Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Sun, 28 Apr 2024 18:23:08 +0200 Subject: [PATCH] Update README --- README.md | 2 +- src/options.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 850eac2..dd83628 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Options: -n, --no-reconnect Do not reconnect -e, --local-echo Enable local echo --input-mode normal|hex|line Select input mode (default: normal) - --output-mode normal|hex|hexN Select output mode (default: normal, N <= 4096) + --output-mode normal|hex|hexN Select output mode (default: normal) -t, --timestamp Enable line timestamp --timestamp-format Set timestamp format (default: 24hour) --timestamp-timeout Set timestamp timeout (default: 200) diff --git a/src/options.c b/src/options.c index f538f42..65082b6 100644 --- a/src/options.c +++ b/src/options.c @@ -145,7 +145,7 @@ void print_help(char *argv[]) printf(" -n, --no-reconnect Do not reconnect\n"); printf(" -e, --local-echo Enable local echo\n"); printf(" --input-mode normal|hex|line Select input mode (default: normal)\n"); - printf(" --output-mode normal|hex|hexN Select output mode (default: normal, N <= %d)\n", HEX_N_VALUE_MAX); + printf(" --output-mode normal|hex|hexN Select output mode (default: normal)\n"); printf(" -t, --timestamp Enable line timestamp\n"); printf(" --timestamp-format Set timestamp format (default: 24hour)\n"); printf(" --timestamp-timeout Set timestamp timeout (default: 200)\n");