From bcced6c4f6a79e09ed3961632b2faf81fe873137 Mon Sep 17 00:00:00 2001 From: Duncan Ogilvie Date: Wed, 27 Nov 2024 12:01:18 +0100 Subject: Fix attempts to detect Windows using _WIN32 --- src/notification_proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/notification_proxy.c') diff --git a/src/notification_proxy.c b/src/notification_proxy.c index c5f29f5..9d983ba 100644 --- a/src/notification_proxy.c +++ b/src/notification_proxy.c @@ -31,7 +31,7 @@ #include "property_list_service.h" #include "common/debug.h" -#ifdef WIN32 +#ifdef _WIN32 #include #define sleep(x) Sleep(x*1000) #endif -- cgit v1.1-32-gdbae