mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
Merge pull request #17869 from dundargoc/vim-8.2.3943
vim-patch:8.2.3943: compiler warning from gcc for uninitialized variable
This commit is contained in:
commit
111dd6c322
@ -1536,7 +1536,7 @@ static void diff_read(int idx_orig, int idx_new, diffio_T *dio)
|
||||
long off;
|
||||
int i;
|
||||
int notset = true; // block "*dp" not set yet
|
||||
diffhunk_T *hunk;
|
||||
diffhunk_T *hunk = NULL; // init to avoid gcc warning
|
||||
enum {
|
||||
DIFF_ED,
|
||||
DIFF_UNIFIED,
|
||||
|
Loading…
Reference in New Issue
Block a user