mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
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:
parent
51567db4b6
commit
a348c666a3
@ -3442,8 +3442,8 @@ 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 {
|
||||||
int *cp; ///< char value
|
int *cp; ///< char value
|
||||||
|
Loading…
Reference in New Issue
Block a user