From: Benno Schulenberg Date: Thu, 24 Apr 2025 09:32:32 +0000 (+0200) Subject: irqtop: make the wording of an error message identical to that of another X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5acfc199666aae081889259638d35dd3fea8cf0b;p=thirdparty%2Futil-linux.git 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 --- 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);