1
0
forked from aniani/vim

patch 8.2.5125: MS-Windows: warnings from MinGW compiler

Problem:    MS-Windows: warnings from MinGW compyler.
Solution:   Use "volatile". (Yasuhiro Matsumoto, closes #10589)  Initialize
            variable.
This commit is contained in:
Yasuhiro Matsumoto
2022-06-18 16:48:36 +01:00
committed by Bram Moolenaar
parent 620aa8eb5b
commit 09f68a5e78
4 changed files with 5 additions and 3 deletions

View File

@@ -1273,7 +1273,7 @@ ExpandMappings(
int i;
int fuzzy;
int match;
int score;
int score = 0;
fuzmatch_str_T *fuzmatch;
fuzzy = cmdline_fuzzy_complete(pat);