# HG changeset patch # User Bram Moolenaar # Date 1563300908 -7200 # Node ID df340014f9e4946009d09ec0d5565534c03e1dc0 # Parent b7c29b692c26b5c3a7ad3e8e746a9cc41885194a patch 8.1.1702: compiler warning for uninitialized variable commit https://github.com/vim/vim/commit/c7283078c318277aa4f52ff514e1dc3dc7fa0c80 Author: Bram Moolenaar Date: Tue Jul 16 20:12:44 2019 +0200 patch 8.1.1702: compiler warning for uninitialized variable Problem: Compiler warning for uninitialized variable. Solution: Initialize it. (Christian Brabandt) diff --git a/src/gui.c b/src/gui.c --- a/src/gui.c +++ b/src/gui.c @@ -2253,7 +2253,7 @@ gui_outstr_nowrap( int col = gui.col; #ifdef FEAT_SIGN_ICONS int draw_sign = FALSE; - int signcol; + int signcol = 0; char_u extra[18]; # ifdef FEAT_NETBEANS_INTG int multi_sign = FALSE; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1702, +/**/ 1701, /**/ 1700,