mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 23:38:17 +00:00
vim-patch:7.4.1815
Problem: Compiler warnings for unused variables. (Ajit Thakkar)
Solution: Add a dummy initialization. (Yasuhiro Matsumoto)
9a3b3311d2
This commit is contained in:
@@ -200,9 +200,9 @@ qf_init_ext (
|
||||
char_u *fmtstr = NULL;
|
||||
char_u *growbuf = NULL;
|
||||
size_t growbuflen;
|
||||
size_t growbufsiz;
|
||||
char_u *linebuf;
|
||||
size_t linelen;
|
||||
size_t growbufsiz = 0;
|
||||
char_u *linebuf = NULL;
|
||||
size_t linelen = 0;
|
||||
bool discard;
|
||||
int col = 0;
|
||||
bool use_viscol = false;
|
||||
|
Reference in New Issue
Block a user