updated for version 7.3.920
Problem:    Compiler warning for size_t to int.
Solution:   Add a type cast. (Mike Williams)
diff --git a/src/misc1.c b/src/misc1.c
index 789aad3..913d5ab 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -10139,7 +10139,7 @@
 # if defined(MSWIN) || defined(MSDOS)
 	/* Avoid the path ending in a backslash, it fails when a comma is
 	 * appended. */
-	len = STRLEN(buf);
+	len = (int)STRLEN(buf);
 	if (buf[len - 1] == '\\')
 	    buf[len - 1] = '/';
 # endif