0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 7.4.865

Problem:    Compiler warning for uninitialized variable.
Solution:   Initialize.
This commit is contained in:
Bram Moolenaar
2015-09-09 22:35:29 +02:00
parent e906c50207
commit ed84b76021
2 changed files with 3 additions and 1 deletions

View File

@@ -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