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:
James McCoy
2016-12-12 15:04:57 -05:00
parent 48b5d0f1ba
commit b9c5ca21e6
2 changed files with 4 additions and 4 deletions

View File

@@ -200,9 +200,9 @@ qf_init_ext (
char_u *fmtstr = NULL; char_u *fmtstr = NULL;
char_u *growbuf = NULL; char_u *growbuf = NULL;
size_t growbuflen; size_t growbuflen;
size_t growbufsiz; size_t growbufsiz = 0;
char_u *linebuf; char_u *linebuf = NULL;
size_t linelen; size_t linelen = 0;
bool discard; bool discard;
int col = 0; int col = 0;
bool use_viscol = false; bool use_viscol = false;

View File

@@ -624,7 +624,7 @@ static int included_patches[] = {
1818, 1818,
// 1817 NA // 1817 NA
1816, 1816,
// 1815, 1815,
// 1814 NA // 1814 NA
1813, 1813,
// 1812, // 1812,