From 9d1685d1cf21cf5c17a52ae8ea143161a0d00d37 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 14 Jan 2014 12:18:45 +0100 Subject: [PATCH] updated for version 7.4.144 Problem: MingW also supports intptr_t for OPEN_OH_ARGTYPE. Solution: Adjust #ifdef. (Ken Takata) --- src/os_mswin.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/os_mswin.c b/src/os_mswin.c index 4b2f3cf07..c7eab50d5 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -498,7 +498,7 @@ slash_adjust(p) } } -#if (_MSC_VER >= 1300) +#if (defined(_MSC_VER) && (_MSC_VER >= 1300)) || defined(__MINGW32__) # define OPEN_OH_ARGTYPE intptr_t #else # define OPEN_OH_ARGTYPE long diff --git a/src/version.c b/src/version.c index c3281cafc..8ecdef609 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 144, /**/ 143, /**/ -- 2.50.1