From 5acfc199666aae081889259638d35dd3fea8cf0b Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Thu, 24 Apr 2025 11:32:32 +0200 Subject: [PATCH] irqtop: make the wording of an error message identical to that of another (Besides: the original looked like a statement, not like an error message.) Signed-off-by: Benno Schulenberg --- sys-utils/irqtop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-utils/irqtop.c b/sys-utils/irqtop.c index 3dbd030e0..a42ece070 100644 --- a/sys-utils/irqtop.c +++ b/sys-utils/irqtop.c @@ -465,7 +465,7 @@ int main(int argc, char **argv) if (!ctl.batch) { is_tty = isatty(STDIN_FILENO); if (is_tty && tcgetattr(STDIN_FILENO, &saved_tty) == -1) - fputs(_("terminal setting retrieval"), stdout); + fputs(_("failed to get terminal attributes"), stdout); ctl.win = initscr(); get_terminal_dimension(&ctl.cols, &ctl.rows); -- 2.47.3