1
0
forked from aniani/vim

updated for version 7.3.211

Problem:    Compiler warning.
Solution:   Add type cast.
This commit is contained in:
Bram Moolenaar 2011-06-12 21:25:00 +02:00
parent 2f982e4fab
commit 03227eeb79
2 changed files with 3 additions and 1 deletions

View File

@ -2518,7 +2518,7 @@ cs_resolve_file(i, name)
/* Check for csdir to be non empty to avoid empty path concatenated to
* cscope output. TODO: avoid the unnecessary alloc/free of fullname. */
vim_free(fullname);
fullname = concat_fnames(csdir, (char_u *)name, TRUE);
fullname = (char *)concat_fnames(csdir, (char_u *)name, TRUE);
}
else
(void)sprintf(fullname, "%s", name);

View File

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