patch 8.2.1960: warning for uninitialized variable

Problem:    Warning for uninitialized variable.
Solution:   Initialize the variable.
diff --git a/src/evalfunc.c b/src/evalfunc.c
index 74985c2..5cc9ad7 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -6873,7 +6873,7 @@
     static UINT32_T	gx, gy, gz, gw;
     static int	initialized = FALSE;
     listitem_T	*lx, *ly, *lz, *lw;
-    UINT32_T	x, y, z, w, t, result;
+    UINT32_T	x = 0, y, z, w, t, result;
 
     if (argvars[0].v_type == VAR_UNKNOWN)
     {