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/config-ini.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/config-ini.c') diff --git a/src/config-ini.c b/src/config-ini.c index 2041db5..89d55d5 100644 --- a/src/config-ini.c +++ b/src/config-ini.c @@ -54,7 +54,7 @@ open_config_file(const char *filepath) } } -#ifdef _WIN32 +#ifdef WINDOWS if (f == NULL && (env = getenv("localappdata")) != NULL && env[0] != '\0') { snprintf(cp, sizeof(cp), @@ -74,7 +74,7 @@ open_config_file(const char *filepath) f = fopen(cp, "r"); } } -#ifndef _WIN32 +#ifndef WINDOWS if (f == NULL) { struct passwd *pwd = getpwuid(getuid()); -- cgit v1.2.3-70-g09d2