From 7e000168f7928152c3e9a14400fa791f8decf2c8 Mon Sep 17 00:00:00 2001 From: Michael Sartain Date: Wed, 4 Sep 2024 11:03:05 -0600 Subject: [PATCH] Fix lint check --- inotify-info.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/inotify-info.cpp b/inotify-info.cpp index c6f5822..1c3e11c 100644 --- a/inotify-info.cpp +++ b/inotify-info.cpp @@ -72,22 +72,22 @@ static char thousands_sep = ','; static std::vector ignore_dirs; -const char *RESET = "\x1b[0m"; -const char *YELLOW = "\x1b[0;33m"; -const char *CYAN = "\x1b[0;36m"; -const char *BGRAY = "\x1b[1;30m"; -const char *BGREEN = "\x1b[1;32m"; +const char *RESET = "\x1b[0m"; +const char *YELLOW = "\x1b[0;33m"; +const char *CYAN = "\x1b[0;36m"; +const char *BGRAY = "\x1b[1;30m"; +const char *BGREEN = "\x1b[1;32m"; const char *BYELLOW = "\x1b[1;33m"; -const char *BCYAN = "\x1b[1;36m"; +const char *BCYAN = "\x1b[1;36m"; void set_no_color() { - RESET = ""; - YELLOW = ""; - CYAN = ""; - BGRAY = ""; - BGREEN = ""; + RESET = ""; + YELLOW = ""; + CYAN = ""; + BGRAY = ""; + BGREEN = ""; BYELLOW = ""; - BCYAN = ""; + BCYAN = ""; } /*