From: Lennart Poettering Date: Tue, 20 Feb 2024 15:33:01 +0000 (+0100) Subject: bsod: make sure "Press Any Key" has a blue background too X-Git-Tag: v256-rc1~772^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a1126c7c2edab13ca281f2ba28afd2b5a98eb30;p=thirdparty%2Fsystemd.git bsod: make sure "Press Any Key" has a blue background too --- diff --git a/src/journal/bsod.c b/src/journal/bsod.c index 046858e8a64..05c3205d447 100644 --- a/src/journal/bsod.c +++ b/src/journal/bsod.c @@ -221,7 +221,7 @@ static int display_emergency_message_fullscreen(const char *message) { if (r < 0) log_warning_errno(r, "Failed to move terminal cursor position, ignoring: %m"); - r = loop_write(fd, "Press any key to exit...", SIZE_MAX); + r = loop_write(fd, ANSI_BACKGROUND_BLUE "Press any key to exit...", SIZE_MAX); if (r < 0) { ret = log_warning_errno(r, "Failed to write to terminal: %m"); goto cleanup;