diff --git a/desktop_version/src/Vlogging.c b/desktop_version/src/Vlogging.c index c5114ee9..6a17f466 100644 --- a/desktop_version/src/Vlogging.c +++ b/desktop_version/src/Vlogging.c @@ -3,12 +3,12 @@ #include #if defined(__unix__) || defined(__APPLE__) - #include - #define STDOUT_IS_TTY isatty(STDOUT_FILENO) - #define STDERR_IS_TTY isatty(STDERR_FILENO) +# include +# define STDOUT_IS_TTY isatty(STDOUT_FILENO) +# define STDERR_IS_TTY isatty(STDERR_FILENO) #else - #define STDOUT_IS_TTY 0 - #define STDERR_IS_TTY 0 +# define STDOUT_IS_TTY 0 +# define STDERR_IS_TTY 0 #endif #define COLOR(EXPR) color_enabled ? EXPR : ""