updated for version 7.3.037
Problem:    Compiler warnings for loss of data. (Mike Williams)
Solution:   Add type casts.
diff --git a/src/getchar.c b/src/getchar.c
index 0569372..fb28160 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -3922,7 +3922,7 @@
     if (mapchars != NULL)
     {
 	msg_puts(mapchars);
-	len = STRLEN(mapchars);
+	len = (int)STRLEN(mapchars);
 	vim_free(mapchars);
     }
 
diff --git a/src/if_py_both.h b/src/if_py_both.h
index 4b7f185..e435e3e 100644
--- a/src/if_py_both.h
+++ b/src/if_py_both.h
@@ -154,7 +154,7 @@
     {
 	PyInt len = ptr - str;
 
-	if (ga_grow(&io_ga, len + 1) == FAIL)
+	if (ga_grow(&io_ga, (int)(len + 1)) == FAIL)
 	    break;
 
 	mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)len);
@@ -166,10 +166,10 @@
     }
 
     /* Put the remaining text into io_ga for later printing. */
-    if (n > 0 && ga_grow(&io_ga, n + 1) == OK)
+    if (n > 0 && ga_grow(&io_ga, (int)(n + 1)) == OK)
     {
 	mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)n);
-	io_ga.ga_len += n;
+	io_ga.ga_len += (int)n;
     }
 }
 
diff --git a/src/os_win32.c b/src/os_win32.c
index 3fdd41b..0ca47d0 100644
--- a/src/os_win32.c
+++ b/src/os_win32.c
@@ -224,7 +224,8 @@
 
     if (exe_path == NULL && exe_name != NULL)
     {
-	exe_path = vim_strnsave(exe_name, gettail_sep(exe_name) - exe_name);
+	exe_path = vim_strnsave(exe_name,
+				     (int)(gettail_sep(exe_name) - exe_name));
 	if (exe_path != NULL)
 	{
 	    /* Append our starting directory to $PATH, so that when doing
@@ -2374,7 +2375,7 @@
 	/* To avoid a slow failure append "\*" when searching a directory,
 	 * server or network share. */
 	STRCPY(szTrueNameTemp, szTrueName);
-	slen = strlen(szTrueNameTemp);
+	slen = (int)strlen(szTrueNameTemp);
 	if (*porig == psepc && slen + 2 < _MAX_PATH)
 	    STRCPY(szTrueNameTemp + slen, "\\*");
 
diff --git a/src/version.c b/src/version.c
index a49cd52..ed599f7 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    37,
+/**/
     36,
 /**/
     35,