]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid MinGW64 compiler warnings in unexw32.c
authorAndy Moreton <andrewjmoreton@gmail.com>
Sat, 16 Sep 2017 13:44:39 +0000 (16:44 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 16 Sep 2017 13:44:39 +0000 (16:44 +0300)
* src/unexw32.c (pDWP) [MINGW_W64]: Define to "16llx" only for the
64-bit build.

src/unexw32.c

index 0c6b48342e576f077df9334285479ec230ca80ae..e97a52ba07a5311267e8f46b14d4b98d2f611d23 100644 (file)
@@ -471,7 +471,7 @@ get_section_info (file_data *p_infile)
 }
 
 /* Format to print a DWORD_PTR value.  */
-#ifdef MINGW_W64
+#if defined MINGW_W64 && defined _WIN64
 # define pDWP  "16llx"
 #else
 # define pDWP  "08lx"