From 5b4f05f42a12596fa895b7665bbd740b5e5cc2a8 Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Mon, 6 Mar 2023 07:40:59 +0100 Subject: strauss: add missing line separators * src/strauss.c (tips_tricks_tweaks): Add missing line separators. (MAX_TIP_LINES): Bump. Resolves: https://github.com/strace/strace/pull/245 --- src/strauss.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/strauss.c b/src/strauss.c index b22ab6ac5..1b6d8d419 100644 --- a/src/strauss.c +++ b/src/strauss.c @@ -57,7 +57,7 @@ static const char *strauss[] = { const size_t strauss_lines = ARRAY_SIZE(strauss); -enum { MAX_TIP_LINES = 13 }; +enum { MAX_TIP_LINES = 14 }; static const char *tips_tricks_tweaks[][MAX_TIP_LINES] = { { "strace has an extensive manual page", @@ -128,7 +128,7 @@ static const char *tips_tricks_tweaks[][MAX_TIP_LINES] = { { "strace is about as old as the Linux kernel.", "It has been originally written for SunOS", "by Paul Kranenburg in 1991. The support", - "for all OSes except Linux was dropped" + "for all OSes except Linux was dropped", "in 2012, though, in strace 4.7." }, { "strace is able to decode netlink messages.", "It does so automatically for I/O performed", @@ -285,8 +285,8 @@ static const char *tips_tricks_tweaks[][MAX_TIP_LINES] = { "will trace all syscalls related to accessing", "and modifying process's user/group IDs", "and capability sets. Other pre-defined", - "syscall classes include %clock, %desc," - "%file, %ipc, %memory, %net, %process," + "syscall classes include %clock, %desc,", + "%file, %ipc, %memory, %net, %process,", "and %signal." }, { "Trying to figure out communication between", "tracees inside a different PID namespace", -- cgit v1.2.1