]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.206 v7.4.206
authorBram Moolenaar <Bram@vim.org>
Wed, 19 Mar 2014 11:37:22 +0000 (12:37 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 19 Mar 2014 11:37:22 +0000 (12:37 +0100)
Problem:    Compiler warnings on 64 bit Windows.
Solution:   Add type casts. (Mike Williams)

src/gui_w48.c
src/os_mswin.c
src/version.c

index f4473f62c82d20adcd39525dc82c278a3f4687e6..4d9032019f244c79296240fbea08e0ef7eedaa9d 100644 (file)
@@ -3078,7 +3078,7 @@ logfont2name(LOGFONT lf)
     if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
     {
        int     len;
-       acp_to_enc(lf.lfFaceName, strlen(lf.lfFaceName),
+       acp_to_enc(lf.lfFaceName, (int)strlen(lf.lfFaceName),
                                                (char_u **)&font_name, &len);
     }
 #endif
index ec35029c3371447de7c2c0af02ff6b9ef88a4afa..871afad9d2f296ae59eb419bf0c7f21e27510df2 100644 (file)
@@ -2884,7 +2884,7 @@ get_logfont(
     if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
     {
        int     len;
-       enc_to_acp(name, strlen(name), &acpname, &len);
+       enc_to_acp(name, (int)strlen(name), &acpname, &len);
        name = acpname;
     }
 #endif
index 82817145bc86640c1dcc02c9f0ac10d461cc6e39..aabc366b0c5f43e8ca9e0c0f2a2b5ac22e425996 100644 (file)
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    206,
 /**/
     205,
 /**/