From c0827212dfbf58990056732781e9ad92b785a3b0 Mon Sep 17 00:00:00 2001 From: martell Date: Thu, 5 Feb 2015 09:38:30 +0000 Subject: [PATCH] UI: use _WIN32 instead of WIN32 _WIN32 is a compiler define so it should be used. WIN32 is only valid when it's defined in a header. --- obs/obs-app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obs/obs-app.cpp b/obs/obs-app.cpp index a13eb0f5f..75b5e1606 100644 --- a/obs/obs-app.cpp +++ b/obs/obs-app.cpp @@ -612,7 +612,7 @@ static void load_debug_privilege(void) int main(int argc, char *argv[]) { -#ifndef WIN32 +#ifndef _WIN32 signal(SIGPIPE, SIG_IGN); #endif