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/afc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/afc.c') diff --git a/src/afc.c b/src/afc.c index 1b4070b..d9b35b7 100644 --- a/src/afc.c +++ b/src/afc.c @@ -338,7 +338,7 @@ static afc_error_t afc_receive_data(afc_client_t client, char **bytes, uint32_t free(buf); debug_info("WARNING: Unknown operation code received 0x%llx param1=%lld", header.operation, param1); -#ifndef WIN32 +#ifndef _WIN32 fprintf(stderr, "%s: WARNING: Unknown operation code received 0x%llx param1=%lld", __func__, (long long)header.operation, (long long)param1); #endif -- cgit v1.1-32-gdbae