forked from aniani/vim
updated for version 7.3.238
Problem: Compiler warning for conversion. Solution: Add type cast. (Mike Williams)
This commit is contained in:
@@ -5025,7 +5025,7 @@ ExpandRTDir(pat, num_file, file, dirnames)
|
|||||||
|
|
||||||
*num_file = 0;
|
*num_file = 0;
|
||||||
*file = NULL;
|
*file = NULL;
|
||||||
pat_len = STRLEN(pat);
|
pat_len = (int)STRLEN(pat);
|
||||||
ga_init2(&ga, (int)sizeof(char *), 10);
|
ga_init2(&ga, (int)sizeof(char *), 10);
|
||||||
|
|
||||||
for (i = 0; dirnames[i] != NULL; ++i)
|
for (i = 0; dirnames[i] != NULL; ++i)
|
||||||
|
@@ -709,6 +709,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
238,
|
||||||
/**/
|
/**/
|
||||||
237,
|
237,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user