comparison src/gui.c @ 17407:df340014f9e4 v8.1.1702

patch 8.1.1702: compiler warning for uninitialized variable commit https://github.com/vim/vim/commit/c7283078c318277aa4f52ff514e1dc3dc7fa0c80 Author: Bram Moolenaar <Bram@vim.org> 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)
author Bram Moolenaar <Bram@vim.org>
date Tue, 16 Jul 2019 20:15:08 +0200
parents 54fcde87a9eb
children 0f7ae8010787
comparison
equal deleted inserted replaced
17406:b7c29b692c26 17407:df340014f9e4
2251 attrentry_T *aep = NULL; 2251 attrentry_T *aep = NULL;
2252 int draw_flags; 2252 int draw_flags;
2253 int col = gui.col; 2253 int col = gui.col;
2254 #ifdef FEAT_SIGN_ICONS 2254 #ifdef FEAT_SIGN_ICONS
2255 int draw_sign = FALSE; 2255 int draw_sign = FALSE;
2256 int signcol; 2256 int signcol = 0;
2257 char_u extra[18]; 2257 char_u extra[18];
2258 # ifdef FEAT_NETBEANS_INTG 2258 # ifdef FEAT_NETBEANS_INTG
2259 int multi_sign = FALSE; 2259 int multi_sign = FALSE;
2260 # endif 2260 # endif
2261 #endif 2261 #endif