From 067bb2fcef754f1d20a6ea4ea0199584e3db008e Mon Sep 17 00:00:00 2001 From: Serge Gautherie Date: Wed, 15 Nov 2017 02:49:51 +0100 Subject: [PATCH] [SETUPAPI] driver.c: it is _WIN32_WINNT, not WIN32_WINNT. CORE-12580 --- dll/win32/setupapi/driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dll/win32/setupapi/driver.c b/dll/win32/setupapi/driver.c index 88affa3c026..356a95c08db 100644 --- a/dll/win32/setupapi/driver.c +++ b/dll/win32/setupapi/driver.c @@ -565,7 +565,7 @@ done: return Result; } -#if WIN32_WINNT < 0x0600 +#if _WIN32_WINNT < 0x0600 /* WARNING: * This code has been copied from advapi32/reg/reg.c, * so this dll can be tested as is on Windows XP -- 2.17.1