]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid compilation warning in nt/addpm.c
authorEli Zaretskii <eliz@gnu.org>
Sat, 18 Aug 2018 13:10:28 +0000 (16:10 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 18 Aug 2018 13:10:28 +0000 (16:10 +0300)
* nt/addpm.c [!MINGW_W64]: Undefine _WIN32_IE before
redefining it, to avoid compilation warnings.

nt/addpm.c

index ec7d7ff52dbbcfdb7eebe8b37b059b466775b2a1..21320206d6e0813c82a5bf56977cc4c48bb9dc45 100644 (file)
@@ -38,9 +38,12 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 #include <stdio.h>
 #include <malloc.h>
 
-/* MinGW64 barfs if _WIN32_IE is defined to anything below 0x500.  */
+/* MinGW64 barfs if _WIN32_IE is defined to anything below 0x0500.  */
 #ifndef MINGW_W64
-#define _WIN32_IE 0x400
+# ifdef _WIN32_IE
+#  undef _WIN32_IE
+# endif
+#define _WIN32_IE 0x0400
 #endif
 /* Request C Object macros for COM interfaces.  */
 #define COBJMACROS 1