1
0
forked from aniani/vim

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 #endif
char_u *p_shm_save; char_u *p_shm_save;
#ifdef FEAT_QUICKFIX #ifdef FEAT_QUICKFIX
int qf_size; int qf_size = 0;
int qf_idx; int qf_idx;
#endif #endif

View File

@@ -741,6 +741,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
865,
/**/ /**/
864, 864,
/**/ /**/