summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Wilk <jwilk@jwilk.net>2023-03-06 07:40:59 +0100
committerDmitry V. Levin <ldv@strace.io>2023-03-10 08:00:00 +0000
commit5b4f05f42a12596fa895b7665bbd740b5e5cc2a8 (patch)
tree8a7cfa0bfa0dfb3b70b6c58b5e600790959d38d3
parente6caf76ddcbeeb405084e53866ef64c2554abf46 (diff)
downloadstrace-5b4f05f42a12596fa895b7665bbd740b5e5cc2a8.tar.gz
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
-rw-r--r--src/strauss.c8
1 files 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",