From 12e864eb30df410906b5fb5d47f0342be7073527 Mon Sep 17 00:00:00 2001 From: Andy Moreton Date: Sat, 16 Sep 2017 16:44:39 +0300 Subject: [PATCH] Avoid MinGW64 compiler warnings in unexw32.c * src/unexw32.c (pDWP) [MINGW_W64]: Define to "16llx" only for the 64-bit build. --- src/unexw32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.39.5