mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.0.1044: warning for uninitialized variable
Problem: Warning for uninitialized variable. (John Marriott)
Solution: Initialize ind_pre.
2254a8ad0c
This commit is contained in:
parent
fb68c97ce8
commit
27fbffeb4f
@ -2014,7 +2014,7 @@ void op_insert(oparg_T *oap, long count1)
|
||||
{
|
||||
long ins_len, pre_textlen = 0;
|
||||
char_u *firstline, *ins_text;
|
||||
colnr_T ind_pre;
|
||||
colnr_T ind_pre = 0;
|
||||
struct block_def bd;
|
||||
int i;
|
||||
pos_T t1;
|
||||
|
Loading…
Reference in New Issue
Block a user