From: iceman1001 Date: Mon, 13 Feb 2017 10:03:45 +0000 (+0100) Subject: fix: some compiler warning when the #define is not matching. X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/4bf036f2261f05fdd01108950e0478b2eef0b718 fix: some compiler warning when the #define is not matching. --- diff --git a/client/sleep.c b/client/sleep.c index fe397da9..6b0717c6 100644 --- a/client/sleep.c +++ b/client/sleep.c @@ -8,7 +8,7 @@ // platform-independant sleep macros //----------------------------------------------------------------------------- -#ifndef _WIN32 +#ifndef __WIN32 #define _POSIX_C_SOURCE 199309L #include "sleep.h" @@ -24,5 +24,4 @@ void nsleep(uint64_t n) { while (nanosleep(&timeout, &timeout) && errno == EINTR); } -#endif // _WIN32 - +#endif // _WIN32 \ No newline at end of file