1
0
forked from aniani/vim

updated for version 7.4.206

Problem:    Compiler warnings on 64 bit Windows.
Solution:   Add type casts. (Mike Williams)
This commit is contained in:
Bram Moolenaar
2014-03-19 12:37:22 +01:00
parent f0bdd2f28d
commit a0844a1170
3 changed files with 4 additions and 2 deletions

View 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