From 066fac61e017824f7dccbd1ef3d7dc455cf4b95b Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 5 Mar 2025 19:53:47 +0100 Subject: Consistently use (locally defined) WINDOWS macro over mixing __WIN32__ and _WIN32 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/hooks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/hooks.c') diff --git a/src/hooks.c b/src/hooks.c index 1bd3efe..485f5f0 100644 --- a/src/hooks.c +++ b/src/hooks.c @@ -50,7 +50,7 @@ open_hooks_dir(char *hp) return opendir(hp); } -#ifndef _WIN32 +#ifndef WINDOWS struct passwd *pwd = getpwuid(getuid()); snprintf(hp, MAX_HOOK_PATH, "%s/.config/redshift/hooks", pwd->pw_dir); return opendir(hp); @@ -77,7 +77,7 @@ hooks_signal_period_change(enum period prev_period, enum period period) snprintf(hook_path, sizeof(hook_path), "%s/%s", hooksdir_path, hook_name); -#ifndef _WIN32 +#ifndef WINDOWS /* Fork and exec the hook. We close stdout so the hook cannot interfere with the normal output. */ -- cgit v1.2.3-70-g09d2