1
0
forked from aniani/vim

updated for version 7.4.316

Problem:    Warning from 64-bit compiler.
Solution:   Add type cast. (Mike Williams)
This commit is contained in:
Bram Moolenaar
2014-05-29 14:36:29 +02:00
parent c35b0fb181
commit 7116aa0f7d
2 changed files with 3 additions and 1 deletions

View File

@@ -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;
}
}

View File

@@ -734,6 +734,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
316,
/**/
315,
/**/