1
0
forked from aniani/vim

updated for version 7.3.459

Problem:    Win32: Warnings for type conversion.
Solution:   Add type casts. (Mike Williams)
This commit is contained in:
Bram Moolenaar
2012-02-29 13:58:47 +01:00
parent 7f29f7a2f4
commit 4336cdf318
3 changed files with 4 additions and 2 deletions

View File

@@ -264,7 +264,7 @@ get_exe_name(void)
static void
unescape_shellxquote(char_u *p, char_u *escaped)
{
int l = STRLEN(p);
int l = (int)STRLEN(p);
int n;
while (*p != NUL)