From 91ca2358db0bfe305bdfdb2253a28a8bf633b8bc Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Wed, 8 May 2024 09:35:04 +0200 Subject: [PATCH] win32defs: Fix Wundef warning --- src/H5win32defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5win32defs.h b/src/H5win32defs.h index 05d291ec03b..a996f60ab01 100644 --- a/src/H5win32defs.h +++ b/src/H5win32defs.h @@ -57,7 +57,7 @@ struct timezone { * MinGW and the newer, conforming MSVC preprocessor do not exhibit this * behavior. */ -#if (defined(_MSC_VER) && !defined(_MSVC_TRADITIONAL)) || _MSVC_TRADITIONAL +#if (defined(_MSC_VER) && !defined(_MSVC_TRADITIONAL)) || defined(_MSVC_TRADITIONAL) /* Using the MSVC traditional preprocessor */ #define HDopen(S, F, ...) Wopen(S, F, __VA_ARGS__) #else