From: Bram Moolenaar Date: Thu, 29 May 2014 12:36:29 +0000 (+0200) Subject: updated for version 7.4.316 X-Git-Tag: v7.4.316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7116aa0f7d4c3f50f6898798c3047f5232aabe4a;p=vim updated for version 7.4.316 Problem: Warning from 64-bit compiler. Solution: Add type cast. (Mike Williams) --- 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, /**/