From 9e789cc71dd94fc23450b7b4a63bba09a32aaaf9 Mon Sep 17 00:00:00 2001 From: Tobias Stoeckmann Date: Mon, 2 Dec 2024 19:35:04 +0100 Subject: [PATCH] tools: Unify help messages Unify help messages shown when kmod is called without any arguments to use the same grammar and capitalisation. Signed-off-by: Tobias Stoeckmann --- tools/kmod.c | 2 +- tools/static-nodes.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/kmod.c b/tools/kmod.c index 835970b7..434dd049 100644 --- a/tools/kmod.c +++ b/tools/kmod.c @@ -76,7 +76,7 @@ static int kmod_help(int argc, char *argv[]) static const struct kmod_cmd kmod_cmd_help = { .name = "help", .cmd = kmod_help, - .help = "Show help message", + .help = "show help message", }; static int handle_kmod_commands(int argc, char *argv[]) diff --git a/tools/static-nodes.c b/tools/static-nodes.c index cb8afd37..4914d0c3 100644 --- a/tools/static-nodes.c +++ b/tools/static-nodes.c @@ -274,5 +274,5 @@ static int do_static_nodes(int argc, char *argv[]) const struct kmod_cmd kmod_cmd_static_nodes = { .name = "static-nodes", .cmd = do_static_nodes, - .help = "outputs the static-node information installed with the currently running kernel", + .help = "output the static-node information installed with the currently running kernel", };