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)