aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Moreton2017-09-16 16:44:39 +0300
committerEli Zaretskii2017-09-16 16:44:39 +0300
commit12e864eb30df410906b5fb5d47f0342be7073527 (patch)
tree13db56ff5cfa7de0873c74db433aee2c3c34383a
parent625cee531623feddbe3174fad52c7db96ec60bb3 (diff)
downloademacs-12e864eb30df410906b5fb5d47f0342be7073527.tar.gz
emacs-12e864eb30df410906b5fb5d47f0342be7073527.zip
Avoid MinGW64 compiler warnings in unexw32.c
* src/unexw32.c (pDWP) [MINGW_W64]: Define to "16llx" only for the 64-bit build.
-rw-r--r--src/unexw32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexw32.c b/src/unexw32.c
index 0c6b48342e5..e97a52ba07a 100644
--- a/src/unexw32.c
+++ b/src/unexw32.c
@@ -471,7 +471,7 @@ get_section_info (file_data *p_infile)
471} 471}
472 472
473/* Format to print a DWORD_PTR value. */ 473/* Format to print a DWORD_PTR value. */
474#ifdef MINGW_W64 474#if defined MINGW_W64 && defined _WIN64
475# define pDWP "16llx" 475# define pDWP "16llx"
476#else 476#else
477# define pDWP "08lx" 477# define pDWP "08lx"