diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-03-19 12:37:22 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-03-19 12:37:22 +0100 |
commit | a0844a117068ff4d541eb17ef3c0566995e5d3c8 (patch) | |
tree | 553e86b31a604ff306f1d28d23c1ca9ac6eefbe5 /src/os_mswin.c | |
parent | f0bdd2f28db28707385535ac9c270903e16c4637 (diff) | |
download | vim-git-a0844a117068ff4d541eb17ef3c0566995e5d3c8.tar.gz |
updated for version 7.4.206v7.4.206
Problem: Compiler warnings on 64 bit Windows.
Solution: Add type casts. (Mike Williams)
Diffstat (limited to 'src/os_mswin.c')
-rw-r--r-- | src/os_mswin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_mswin.c b/src/os_mswin.c index ec35029c3..871afad9d 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -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 |