# HG changeset patch # User Christian Brabandt # Date 1462127405 -7200 # Node ID 616793d0412bd732c61cfd8ab23b743c0fcdc5c9 # Parent df632f7b8a8d85c98a8db67c3ddc7692965affde commit https://github.com/vim/vim/commit/9a3b3311d26c990208150255ad65472bb4eefaa4 Author: Bram Moolenaar Date: Sun May 1 20:20:49 2016 +0200 patch 7.4.1815 Problem: Compiler warnings for unused variables. (Ajit Thakkar) Solution: Add a dummy initialization. (Yasuhiro Matsumoto) diff --git a/src/quickfix.c b/src/quickfix.c --- a/src/quickfix.c +++ b/src/quickfix.c @@ -207,9 +207,9 @@ qf_init_ext( char_u *fmtstr = NULL; char_u *growbuf = NULL; int growbuflen; - int growbufsiz; - char_u *linebuf; - int linelen; + int growbufsiz = 0; + char_u *linebuf = NULL; + int linelen = 0; int discard; int col = 0; char_u use_viscol = FALSE; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1815, +/**/ 1814, /**/ 1813,