mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.1.1702: compiler warning for uninitialized variable
Problem: Compiler warning for uninitialized variable. Solution: Initialize it. (Christian Brabandt)
This commit is contained in:
@@ -2253,7 +2253,7 @@ gui_outstr_nowrap(
|
|||||||
int col = gui.col;
|
int col = gui.col;
|
||||||
#ifdef FEAT_SIGN_ICONS
|
#ifdef FEAT_SIGN_ICONS
|
||||||
int draw_sign = FALSE;
|
int draw_sign = FALSE;
|
||||||
int signcol;
|
int signcol = 0;
|
||||||
char_u extra[18];
|
char_u extra[18];
|
||||||
# ifdef FEAT_NETBEANS_INTG
|
# ifdef FEAT_NETBEANS_INTG
|
||||||
int multi_sign = FALSE;
|
int multi_sign = FALSE;
|
||||||
|
@@ -777,6 +777,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 */
|
||||||
|
/**/
|
||||||
|
1702,
|
||||||
/**/
|
/**/
|
||||||
1701,
|
1701,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user