Skip to content

Commit

Permalink
Fix lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesart committed Sep 4, 2024
1 parent 222afe1 commit 7e00016
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions inotify-info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,22 +72,22 @@ static char thousands_sep = ',';

static std::vector<std::string> 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 = "";
}

/*
Expand Down

0 comments on commit 7e00016

Please sign in to comment.