mirror of
https://github.com/neovim/neovim.git
synced 2026-01-09 06:43:13 +00:00
vim-patch:8.0.0577: warning for uninitialized variable
Problem: Warning for uninitialized variable. (John Marriott)
Solution: Initialize "indent".
97db5541a6
This commit is contained in:
@@ -520,7 +520,7 @@ int inindent(int extra)
|
||||
// Get indent level from 'indentexpr'.
|
||||
int get_expr_indent(void)
|
||||
{
|
||||
int indent;
|
||||
int indent = -1;
|
||||
pos_T save_pos;
|
||||
colnr_T save_curswant;
|
||||
int save_set_curswant;
|
||||
|
||||
Reference in New Issue
Block a user