patch 7.4.1986
Problem:    Compiler warns for loss of data.
Solution:   Use size_t instead of int. (Christian Brabandt)
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index 07458ed..eb06e38 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -3349,7 +3349,7 @@
     char_u  *afterdir;
     size_t  afterlen = 0;
     char_u  *ffname = fix_fname(fname);
-    int	    fname_len;
+    size_t  fname_len;
 
     if (ffname == NULL)
 	return;