From 7116aa0f7d4c3f50f6898798c3047f5232aabe4a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 29 May 2014 14:36:29 +0200 Subject: [PATCH] updated for version 7.4.316 Problem: Warning from 64-bit compiler. Solution: Add type cast. (Mike Williams) --- src/ex_getln.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ex_getln.c b/src/ex_getln.c index 741173244..7659a37ff 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -5202,7 +5202,7 @@ globpath(path, file, ga, expand_options) for (i = 0; i < num_p; ++i) { ((char_u **)ga->ga_data)[ga->ga_len] = - vim_strnsave(p[i], STRLEN(p[i])); + vim_strnsave(p[i], (int)STRLEN(p[i])); ++ga->ga_len; } } diff --git a/src/version.c b/src/version.c index 28a4136d3..6c113c7b0 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 316, /**/ 315, /**/