]> granicus.if.org Git - vim/commitdiff
patch 7.4.1927 v7.4.1927
authorBram Moolenaar <Bram@vim.org>
Mon, 13 Jun 2016 17:54:22 +0000 (19:54 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 13 Jun 2016 17:54:22 +0000 (19:54 +0200)
Problem:    Compiler warning for signed/unsigned.
Solution:   Add type cast.

src/if_mzsch.c
src/version.c

index 51b0352afb1f2eb38cf9d1d78d068b8a45e26221..645548f8021d0ab85fa894782883c45f7a3f10fd 100644 (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);
index 4f5b5a390f57e1a6cbb136ddaa3f08b9a18d73cb..1323fb7d8c1e36faa40ed715408dc6f37a528b0d 100644 (file)
@@ -753,6 +753,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1927,
 /**/
     1926,
 /**/