From 6859f5c4f3ea2e86896d17073080c39e02d06ca4 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 | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/inotify-info.cpp b/inotify-info.cpp index c6f5822..33760a5 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 *BYELLOW = "\x1b[1;33m"; -const char *BCYAN = "\x1b[1;36m"; +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"; void set_no_color() { - RESET = ""; - YELLOW = ""; - CYAN = ""; - BGRAY = ""; - BGREEN = ""; + RESET = ""; + YELLOW = ""; + CYAN = ""; + BGRAY = ""; + BGREEN = ""; BYELLOW = ""; - BCYAN = ""; + BCYAN = ""; } /*