mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.2.4794: compiler warning for not initialized variable
Problem: Compiler warning for not initialized variable.
Solution: Initialize the variable. (John Marriott)
4c84dd33ad
This commit is contained in:
parent
f8b832b171
commit
f9c8ba0b85
@ -636,7 +636,7 @@ static void block_insert(oparg_T *oap, char_u *s, int b_insert, struct block_def
|
|||||||
*/
|
*/
|
||||||
void op_reindent(oparg_T *oap, Indenter how)
|
void op_reindent(oparg_T *oap, Indenter how)
|
||||||
{
|
{
|
||||||
long i;
|
long i = 0;
|
||||||
char_u *l;
|
char_u *l;
|
||||||
int amount;
|
int amount;
|
||||||
linenr_T first_changed = 0;
|
linenr_T first_changed = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user