mirror of
https://github.com/neovim/neovim.git
synced 2026-02-20 09:19:43 +10: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(cherry picked from commitf9c8ba0b85)
This commit is contained in:
committed by
github-actions[bot]
parent
31307c3877
commit
7d4ab102a6
@@ -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)
|
||||
{
|
||||
long i;
|
||||
long i = 0;
|
||||
char_u *l;
|
||||
int amount;
|
||||
linenr_T first_changed = 0;
|
||||
|
||||
Reference in New Issue
Block a user