# HG changeset patch # User Christian Brabandt # Date 1455827404 -3600 # Node ID d1974721ddc5cd75b358a4457105792e90a41508 # Parent 72614c7dc828ef57c8a4c498842343f52466a5ba commit https://github.com/vim/vim/commit/74a97b1ea0fe2c729e26718d0eec4164c8bed151 Author: Bram Moolenaar Date: Thu Feb 18 21:19:21 2016 +0100 patch 7.4.1349 Problem: And some more MingW compiler warnings. (Cesar Romani) Solution: Add type casts. diff --git a/src/if_mzsch.c b/src/if_mzsch.c --- a/src/if_mzsch.c +++ b/src/if_mzsch.c @@ -1101,10 +1101,10 @@ startup_mzscheme(void) MZ_GC_VAR_IN_REG(0, coll_path); MZ_GC_REG(); /* workaround for dynamic loading on windows */ - s = vim_getenv("PLTCOLLECTS", &mustfree); + s = vim_getenv((char_u *)"PLTCOLLECTS", &mustfree); if (s != NULL) { - coll_path = scheme_make_path(s); + coll_path = scheme_make_path((char *)s); MZ_GC_CHECK(); if (mustfree) vim_free(s); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -748,6 +748,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1349, +/**/ 1348, /**/ 1347,