commit | 2fc83fcd1d6dfd4728a2ef70e2316f79203c7ee0 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Feb 08 22:57:24 2016 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Feb 08 22:57:24 2016 +0100 |
tree | 26112e4e55774f0f430e41cab5985c6686df26b4 | |
parent | b92abad0c58de36d0b0afdcd4ec05261fa1fa84c [diff] [blame] |
patch 7.4.1292 Problem: Some compilers complain about uninitialzed variable, even though all possible cases are handled. (Dominique Pelle) Solution: Add a default initialization.
diff --git a/src/version.c b/src/version.c index 9b9702a..d9f0807 100644 --- a/src/version.c +++ b/src/version.c
@@ -748,6 +748,8 @@ static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1292, +/**/ 1291, /**/ 1290,