From: Andy Moreton Date: Sat, 16 Sep 2017 13:44:39 +0000 (+0300) Subject: Avoid MinGW64 compiler warnings in unexw32.c X-Git-Tag: emacs-26.0.90~162 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=12e864eb30df410906b5fb5d47f0342be7073527;p=emacs.git Avoid MinGW64 compiler warnings in unexw32.c * src/unexw32.c (pDWP) [MINGW_W64]: Define to "16llx" only for the 64-bit build. --- 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) } /* Format to print a DWORD_PTR value. */ -#ifdef MINGW_W64 +#if defined MINGW_W64 && defined _WIN64 # define pDWP "16llx" #else # define pDWP "08lx"