forked from aniani/vim
patch 7.4.865
Problem: Compiler warning for uninitialized variable. Solution: Initialize.
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
@@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user