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 7411732..7659a37 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -5202,7 +5202,7 @@
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 28a4136..6c113c7 100644
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 316,
+/**/
315,
/**/
314,