aboutsummaryrefslogtreecommitdiff
path: root/miscutils/fbsplash.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/fbsplash.c')
-rw-r--r--miscutils/fbsplash.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/miscutils/fbsplash.c b/miscutils/fbsplash.c
index 9ac91e01e..5b2e5ac56 100644
--- a/miscutils/fbsplash.c
+++ b/miscutils/fbsplash.c
@@ -65,6 +65,8 @@
65/* If you want logging messages on /tmp/fbsplash.log... */ 65/* If you want logging messages on /tmp/fbsplash.log... */
66#define DEBUG 0 66#define DEBUG 0
67 67
68#define ESC "\033"
69
68struct globals { 70struct globals {
69#if DEBUG 71#if DEBUG
70 bool bdebug_messages; // enable/disable logging 72 bool bdebug_messages; // enable/disable logging
@@ -514,7 +516,7 @@ int fbsplash_main(int argc UNUSED_PARAM, char **argv)
514 516
515 if (fifo_filename && bCursorOff) { 517 if (fifo_filename && bCursorOff) {
516 // hide cursor (BEFORE any fb ops) 518 // hide cursor (BEFORE any fb ops)
517 full_write(STDOUT_FILENO, "\033[?25l", 6); 519 full_write(STDOUT_FILENO, ESC"[?25l", 6);
518 } 520 }
519 521
520 fb_drawimage(); 522 fb_drawimage();
@@ -559,7 +561,7 @@ int fbsplash_main(int argc UNUSED_PARAM, char **argv)
559 } 561 }
560 562
561 if (bCursorOff) // restore cursor 563 if (bCursorOff) // restore cursor
562 full_write(STDOUT_FILENO, "\033[?25h", 6); 564 full_write(STDOUT_FILENO, ESC"[?25h", 6);
563 565
564 return EXIT_SUCCESS; 566 return EXIT_SUCCESS;
565} 567}