From 3fbcd854b27f98fd68cc9a9ae0f5227cbd5c4c76 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Thu, 30 Jan 2025 15:27:27 +0100 Subject: [PATCH] lsmem: make an error message identical to one used in seven other places Signed-off-by: Benno Schulenberg --- sys-utils/lsmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-utils/lsmem.c b/sys-utils/lsmem.c index c9851e98c..94150e49d 100644 --- a/sys-utils/lsmem.c +++ b/sys-utils/lsmem.c @@ -713,7 +713,7 @@ int main(int argc, char **argv) cl = scols_table_new_column(lsmem->table, ci->name, ci->whint, ci->flags); if (!cl) - err(EXIT_FAILURE, _("Failed to initialize output column")); + err(EXIT_FAILURE, _("failed to initialize output column")); if (lsmem->json) { int id = get_column_id(i); -- 2.47.3