From: Bram Moolenaar Date: Sun, 1 May 2016 18:20:49 +0000 (+0200) Subject: patch 7.4.1815 X-Git-Tag: v7.4.1815 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a3b3311d26c990208150255ad65472bb4eefaa4;p=thirdparty%2Fvim.git 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 index 6a38c789a3..db4c0fa7fc 100644 --- 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 index 0d78470579..3ecf611397 100644 --- a/src/version.c +++ b/src/version.c @@ -753,6 +753,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1815, /**/ 1814, /**/