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;
|
||||
*file = NULL;
|
||||
pat_len = STRLEN(pat);
|
||||
pat_len = (int)STRLEN(pat);
|
||||
ga_init2(&ga, (int)sizeof(char *), 10);
|
||||
|
||||
for (i = 0; dirnames[i] != NULL; ++i)
|
||||
|
@@ -709,6 +709,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
238,
|
||||
/**/
|
||||
237,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user