From: Benno Schulenberg Date: Thu, 4 Jun 2026 09:52:50 +0000 (+0200) Subject: lsmem: (usage) list possible values for like for the other X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34d46b8afcdb879eef929c39256865a2be98fac9;p=thirdparty%2Futil-linux.git lsmem: (usage) list possible values for like for the other That is: use vertical bars between the values instead of commas and "or". (Noticed because of the missing space before "always".) Signed-off-by: Benno Schulenberg --- diff --git a/sys-utils/lsmem.c b/sys-utils/lsmem.c index d8196215c..c3c39e8cb 100644 --- a/sys-utils/lsmem.c +++ b/sys-utils/lsmem.c @@ -678,7 +678,7 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" -r, --raw use raw output format\n"), out); fputs(_(" -S, --split split ranges by specified columns\n"), out); fputs(_(" -s, --sysroot use the specified directory as system root\n"), out); - fputs(_(" --summary[=] print summary information (never,always or only)\n"), out); + fputs(_(" --summary[=] print summary information (always|never|only)\n"), out); fputs(USAGE_SEPARATOR, out); fprintf(out, USAGE_HELP_OPTIONS(27));