mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.0.0577: warning for uninitialized variable
Problem: Warning for uninitialized variable. (John Marriott) Solution: Initialize "indent".
This commit is contained in:
parent
1d4be82c7d
commit
97db5541a6
@ -9251,7 +9251,7 @@ find_match(int lookfor, linenr_T ourscope)
|
||||
int
|
||||
get_expr_indent(void)
|
||||
{
|
||||
int indent;
|
||||
int indent = -1;
|
||||
char_u *inde_copy;
|
||||
pos_T save_pos;
|
||||
colnr_T save_curswant;
|
||||
|
@ -764,6 +764,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
577,
|
||||
/**/
|
||||
576,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user