patch 8.2.3655: compiler warning for using size_t for int

Problem:    Compiler warning for using size_t for int.
Solution:   Add a type cast. (Mike Williams, closes #9199)
diff --git a/src/vim9compile.c b/src/vim9compile.c
index 934f41b..fe692cb 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -8255,7 +8255,7 @@
 	    }
 	    else
 	    {
-		if (!valid_varname(arg, varlen, FALSE))
+		if (!valid_varname(arg, (int)varlen, FALSE))
 		    goto failed;
 		if (lookup_local(arg, varlen, NULL, cctx) == OK)
 		{