From: Bram Moolenaar Date: Tue, 16 Jul 2019 18:12:44 +0000 (+0200) Subject: patch 8.1.1702: compiler warning for uninitialized variable X-Git-Tag: v8.1.1702 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c7283078c318277aa4f52ff514e1dc3dc7fa0c80;p=vim 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 index e66581f52..1c56745a6 100644 --- 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 index b237fd6d6..c37955315 100644 --- a/src/version.c +++ b/src/version.c @@ -777,6 +777,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1702, /**/ 1701, /**/