diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-09-09 22:35:29 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-09-09 22:35:29 +0200 |
commit | ed84b76021df763619cabaedddc44eb5ee849136 (patch) | |
tree | f356f129356e52f2a772b2b2e4aebfa8dfe38b34 /src/ex_cmds2.c | |
parent | e906c502079770ae0e0071c74cefb802689ff193 (diff) | |
download | vim-git-ed84b76021df763619cabaedddc44eb5ee849136.tar.gz |
patch 7.4.865v7.4.865
Problem: Compiler warning for uninitialized variable.
Solution: Initialize.
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 2 |
1 files changed, 1 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 |