From 99381b43861a72b68566e88ca48947574051c940 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Mon, 4 May 2020 01:48:07 +0200 Subject: [PATCH] fix defined --- client/src/proxmark3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/proxmark3.c b/client/src/proxmark3.c index 80fd958b1..1ed8bb65a 100644 --- a/client/src/proxmark3.c +++ b/client/src/proxmark3.c @@ -90,7 +90,7 @@ static void showBanner(void) { g_printAndLog = PRINTANDLOG_PRINT; PrintAndLogEx(NORMAL, "\n"); -#if defined(__linux__) || (__APPLE__) || (_WIN32) +#if defined(__linux__) || defined(__APPLE__) || defined(_WIN32) PrintAndLogEx(NORMAL, " " _BLUE_("██████╗ ███╗ ███╗ ████╗ ")); PrintAndLogEx(NORMAL, " " _BLUE_("██╔══██╗████╗ ████║ ══█║")); PrintAndLogEx(NORMAL, " " _BLUE_("██████╔╝██╔████╔██║ ████╔╝")); @@ -893,7 +893,7 @@ int main(int argc, char *argv[]) { session.stdinOnTTY = isatty(STDIN_FILENO); session.stdoutOnTTY = isatty(STDOUT_FILENO); -#if defined(__linux__) || (__APPLE__) +#if defined(__linux__) || defined(__APPLE__) // it's okay to use color if: // * Linux or OSX // * Not redirected to a file but printed to term