]> granicus.if.org Git - vim/commitdiff
patch 7.4.1583 v7.4.1583
authorBram Moolenaar <Bram@vim.org>
Wed, 16 Mar 2016 22:24:43 +0000 (23:24 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 16 Mar 2016 22:24:43 +0000 (23:24 +0100)
Problem:    Warning for unitinialized variable.
Solution:   Initialize it. (Dominique)

src/ex_cmds2.c
src/version.c

index 018f44cc29ad149f1717e936354ed2a4632e02db..19210f30bdd8dce23be444496cdd64b34b51513e 100644 (file)
@@ -1179,7 +1179,7 @@ check_due_timer()
 {
     timer_T    *timer;
     long       this_due;
-    long       next_due;
+    long       next_due = -1;
     proftime_T now;
     int                did_one = FALSE;
 # ifdef WIN3264
index 6e195360fcaf5d2618e1bf72798966ddc0598963..20f3e071c05c9418164dce2f761172f45e6b03e8 100644 (file)
@@ -748,6 +748,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1583,
 /**/
     1582,
 /**/