From 5bb37687820bad3d7c8628e598666876f960ccc2 Mon Sep 17 00:00:00 2001 From: Misa Date: Mon, 14 Nov 2022 19:28:12 -0800 Subject: [PATCH] Fix indentation style of `#define`s in `Vlogging.c` This makes it so the hash is always in the first column while the rest of the line follows normal indentation rules. --- desktop_version/src/Vlogging.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 : ""