diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-05-29 21:42:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-05-29 21:42:55 +0200 |
commit | 09307e3bc1423d5e8a05464b94717a948d6c059a (patch) | |
tree | 559133723b357f7e024d7afdcb2612eb1976bc5e /src/screen.c | |
parent | b60db8ba149b26024e6d871e8634d7fea639252a (diff) | |
download | vim-git-09307e3bc1423d5e8a05464b94717a948d6c059a.tar.gz |
patch 8.2.0838: MS-Windows: compiler warning for uninitialized variablesv8.2.0838
Problem: MS-Windows: compiler warning for uninitialized variables.
Solution: Initialize variables.
Diffstat (limited to 'src/screen.c')
-rw-r--r-- | src/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c index e218196fd..6893ca36f 100644 --- a/src/screen.c +++ b/src/screen.c @@ -1882,7 +1882,7 @@ screen_stop_highlight(void) { int do_ME = FALSE; // output T_ME code #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS) - int do_ME_fg, do_ME_bg; + int do_ME_fg = FALSE, do_ME_bg = FALSE; #endif if (screen_attr != 0 |