0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

patch 7.4.1927

Problem:    Compiler warning for signed/unsigned.
Solution:   Add type cast.
This commit is contained in:
Bram Moolenaar
2016-06-13 19:54:22 +02:00
parent a890f5e348
commit 5b7d177e89
2 changed files with 4 additions and 2 deletions

View File

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

View File

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