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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user