commit | 4336cdf31860c5b590c2e5188b0abb6d6e030de0 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Feb 29 13:58:47 2012 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Feb 29 13:58:47 2012 +0100 |
tree | 6e24c9f9cc37d4f93e364b7e90cc5fb2a8849d97 | |
parent | 7f29f7a2f47160acef0477770d3cebf1357470a8 [diff] [blame] |
updated for version 7.3.459 Problem: Win32: Warnings for type conversion. Solution: Add type casts. (Mike Williams)
diff --git a/src/os_win32.c b/src/os_win32.c index 57f004e..371363b 100644 --- a/src/os_win32.c +++ b/src/os_win32.c
@@ -264,7 +264,7 @@ static void unescape_shellxquote(char_u *p, char_u *escaped) { - int l = STRLEN(p); + int l = (int)STRLEN(p); int n; while (*p != NUL)