commit | c7283078c318277aa4f52ff514e1dc3dc7fa0c80 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jul 16 20:12:44 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jul 16 20:12:44 2019 +0200 |
tree | 25b23729e016be41cfe503a20f29e59c003989ea | |
parent | 7ce2aa01c2e78f762f68c1c8df64649d790365e2 [diff] [blame] |
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 e66581f..1c56745 100644 --- a/src/gui.c +++ b/src/gui.c
@@ -2253,7 +2253,7 @@ 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;