# HG changeset patch # User Christian Brabandt # Date 1494920703 -7200 # Node ID 346168f2a6cb3c0b3ef2938e15533a83505e4365 # Parent 30e43349a78a37fadb27580b7cd63abb9f1c042b patch 8.0.0598: building with gcc 7.1 yields new warnings commit https://github.com/vim/vim/commit/9e0f6ec0762575d229b86798b284ca4876bc3d73 Author: Bram Moolenaar Date: Tue May 16 09:36:54 2017 +0200 patch 8.0.0598: building with gcc 7.1 yields new warnings Problem: Building with gcc 7.1 yields new warnings. Solution: Initialize result. (John Marriott) diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -10890,6 +10890,9 @@ eval_vars( result = strbuf; break; #endif + default: + result = (char_u *)""; /* avoid gcc warning */ + break; } resultlen = (int)STRLEN(result); /* length of new string */ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 598, +/**/ 597, /**/ 596,