diff 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
line wrap: on
line diff
--- 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;