vim-patch:8.2.3425: warning for using uninitialized variable

Problem:    Warning for using uninitialized variable.
Solution:   Initialize it. (John Marriott)
56e14698b4
This commit is contained in:
zeertzjq 2021-09-19 13:13:44 +08:00
parent 51567db4b6
commit a348c666a3

View File

@ -3442,7 +3442,7 @@ static char_u *set_chars_option(win_T *wp, char_u **varp, bool set)
int c1; int c1;
int c2 = 0; int c2 = 0;
int c3 = 0; int c3 = 0;
char_u *last_multispace; // Last occurrence of "multispace:" char_u *last_multispace = NULL; // Last occurrence of "multispace:"
int multispace_len = 0; // Length of lcs-multispace string int multispace_len = 0; // Length of lcs-multispace string
struct chars_tab { struct chars_tab {