From e266422c541839560ed5da6024551dbdc2816af0 Mon Sep 17 00:00:00 2001 From: Oliver Hartkopp Date: Tue, 28 Apr 2020 18:57:26 +0200 Subject: [PATCH] isotpdump: make help text fit into 80 colums again Signed-off-by: Oliver Hartkopp --- isotpdump.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/isotpdump.c b/isotpdump.c index 6b90e08..e9d9620 100644 --- a/isotpdump.c +++ b/isotpdump.c @@ -78,7 +78,8 @@ void print_usage(char *prg) fprintf(stderr, " -t (timestamp: (a)bsolute/(d)elta/(z)ero/(A)bsolute w date)\n"); fprintf(stderr, " -u (print uds messages)\n"); fprintf(stderr, "\nCAN IDs and addresses are given and expected in hexadecimal values.\n"); - fprintf(stderr, "\nUDS output contains a flag which provides information about the type of the message.\n\n"); + fprintf(stderr, "\nUDS output contains a flag which provides information about the type of the \n"); + fprintf(stderr, "message.\n\n"); fprintf(stderr, "Flags:\n"); fprintf(stderr, " [SRQ] = Service Request\n"); fprintf(stderr, " [PSR] = Positive Service Response\n");