commit | ed84b76021df763619cabaedddc44eb5ee849136 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Sep 09 22:35:29 2015 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Sep 09 22:35:29 2015 +0200 |
tree | f356f129356e52f2a772b2b2e4aebfa8dfe38b34 | |
parent | e906c502079770ae0e0071c74cefb802689ff193 [diff] [blame] |
patch 7.4.865 Problem: Compiler warning for uninitialized variable. Solution: Initialize.
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 3cc2d45..30f9e9d 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c
@@ -2447,7 +2447,7 @@ #endif char_u *p_shm_save; #ifdef FEAT_QUICKFIX - int qf_size; + int qf_size = 0; int qf_idx; #endif