From d695ba732de915fc227c1069a7a4e1d5049601bd Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 10 May 2020 13:42:43 +0200 Subject: patch 8.2.0727: MS-Windows: new gcc compiler does not support scanf format Problem: MS-Windows: new gcc compiler does not support scanf format. Solution: Use "%ll" instead of "%I". (Ken Takata) --- src/vim.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/vim.h') diff --git a/src/vim.h b/src/vim.h index c84d5a596..9e4c61db3 100644 --- a/src/vim.h +++ b/src/vim.h @@ -340,9 +340,9 @@ typedef unsigned int int_u; #ifdef _WIN64 typedef unsigned __int64 long_u; typedef __int64 long_i; -# define SCANF_HEX_LONG_U "%Ix" -# define SCANF_DECIMAL_LONG_U "%Iu" -# define PRINTF_HEX_LONG_U "0x%Ix" +# define SCANF_HEX_LONG_U "%llx" +# define SCANF_DECIMAL_LONG_U "%llu" +# define PRINTF_HEX_LONG_U "0x%llx" #else // Microsoft-specific. The __w64 keyword should be specified on any typedefs // that change size between 32-bit and 64-bit platforms. For any such type, -- cgit v1.2.1