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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
@@ -734,6 +734,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
316,
|
||||
/**/
|
||||
315,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user