From: Benno Schulenberg Date: Sat, 7 Mar 2026 11:43:07 +0000 (+0100) Subject: lsmem: correct the grammar of an error message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4df4ae47fad0cf79071fd75c9d39759d7152bff6;p=thirdparty%2Futil-linux.git lsmem: correct the grammar of an error message That is: make the message identical to its twin nine lines back. (The spello was introduced by commit 92d018a105 from five months ago.) CC: Sumanth Korikkar Signed-off-by: Benno Schulenberg --- diff --git a/sys-utils/lsmem.c b/sys-utils/lsmem.c index b74c95d43..aee68a171 100644 --- a/sys-utils/lsmem.c +++ b/sys-utils/lsmem.c @@ -819,7 +819,7 @@ int main(int argc, char **argv) /* open /sys/firmware/memory handler (optional) */ lsmem->sysmemconfig = ul_new_path(_PATH_SYS_MEMCONFIG); if (!lsmem->sysmemconfig) - err(EXIT_FAILURE, _("failed to initialized %s handler"), _PATH_SYS_MEMCONFIG); + err(EXIT_FAILURE, _("failed to initialize %s handler"), _PATH_SYS_MEMCONFIG); if (prefix && ul_path_set_prefix(lsmem->sysmemconfig, prefix) != 0) err(EXIT_FAILURE, _("invalid argument to --sysroot"));