From 8187e0143874e1bf0412263e716cf8c782a5aa16 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 13 Sep 2017 22:48:30 +0200 Subject: *: use ESC define instead of "\033"; use ESC[m instead of ESC[0m text data bss dec hex filename 922535 481 6832 929848 e3038 busybox_old 922534 481 6832 929847 e3037 busybox_unstripped Signed-off-by: Denys Vlasenko --- miscutils/fbsplash.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'miscutils/fbsplash.c') diff --git a/miscutils/fbsplash.c b/miscutils/fbsplash.c index 9ac91e0..5b2e5ac 100644 --- a/miscutils/fbsplash.c +++ b/miscutils/fbsplash.c @@ -65,6 +65,8 @@ /* If you want logging messages on /tmp/fbsplash.log... */ #define DEBUG 0 +#define ESC "\033" + struct globals { #if DEBUG bool bdebug_messages; // enable/disable logging @@ -514,7 +516,7 @@ int fbsplash_main(int argc UNUSED_PARAM, char **argv) if (fifo_filename && bCursorOff) { // hide cursor (BEFORE any fb ops) - full_write(STDOUT_FILENO, "\033[?25l", 6); + full_write(STDOUT_FILENO, ESC"[?25l", 6); } fb_drawimage(); @@ -559,7 +561,7 @@ int fbsplash_main(int argc UNUSED_PARAM, char **argv) } if (bCursorOff) // restore cursor - full_write(STDOUT_FILENO, "\033[?25h", 6); + full_write(STDOUT_FILENO, ESC"[?25h", 6); return EXIT_SUCCESS; } -- cgit v1.1