summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-09-09 22:35:29 +0200
committerBram Moolenaar <Bram@vim.org>2015-09-09 22:35:29 +0200
commited84b76021df763619cabaedddc44eb5ee849136 (patch)
treef356f129356e52f2a772b2b2e4aebfa8dfe38b34
parente906c502079770ae0e0071c74cefb802689ff193 (diff)
downloadvim-git-ed84b76021df763619cabaedddc44eb5ee849136.tar.gz
patch 7.4.865v7.4.865
Problem: Compiler warning for uninitialized variable. Solution: Initialize.
-rw-r--r--src/ex_cmds2.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index 3cc2d45a7..30f9e9d18 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -2447,7 +2447,7 @@ ex_listdo(eap)
#endif
char_u *p_shm_save;
#ifdef FEAT_QUICKFIX
- int qf_size;
+ int qf_size = 0;
int qf_idx;
#endif
diff --git a/src/version.c b/src/version.c
index d1ee1f28e..a9b20dc0d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 865,
+/**/
864,
/**/
863,