3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-22 06:29:23 +01:00

client: update CLEAR_SCREEN to be consistent with others

Clear screen used a \033 escape sequence while others used a \x
This commit is contained in:
James Prestwood 2022-07-07 10:55:04 -07:00 committed by Denis Kenzior
parent da8a87fcf5
commit e4c3cfd229

View File

@ -30,7 +30,7 @@ struct command_family;
#define COLOR_BLUE "\x1B[94m"
#define COLOR_YELLOW "\x1b[33m"
#define COLOR_OFF "\x1B[0m"
#define CLEAR_SCREEN "\033[2J"
#define CLEAR_SCREEN "\x1b[2J"
#define MARGIN " "
void display(const char *format, ...)