1
0
forked from aniani/vim

patch 7.4.1349

Problem:    And some more MingW compiler warnings. (Cesar Romani)
Solution:   Add type casts.
This commit is contained in:
Bram Moolenaar
2016-02-18 21:19:21 +01:00
parent 7f0608fb52
commit 74a97b1ea0
2 changed files with 4 additions and 2 deletions

View File

@@ -1101,10 +1101,10 @@ startup_mzscheme(void)
MZ_GC_VAR_IN_REG(0, coll_path); MZ_GC_VAR_IN_REG(0, coll_path);
MZ_GC_REG(); MZ_GC_REG();
/* workaround for dynamic loading on windows */ /* workaround for dynamic loading on windows */
s = vim_getenv("PLTCOLLECTS", &mustfree); s = vim_getenv((char_u *)"PLTCOLLECTS", &mustfree);
if (s != NULL) if (s != NULL)
{ {
coll_path = scheme_make_path(s); coll_path = scheme_make_path((char *)s);
MZ_GC_CHECK(); MZ_GC_CHECK();
if (mustfree) if (mustfree)
vim_free(s); vim_free(s);

View File

@@ -747,6 +747,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 */
/**/
1349,
/**/ /**/
1348, 1348,
/**/ /**/