# HG changeset patch # User Christian Brabandt # Date 1536607807 -7200 # Node ID 150274bc6f5cb1d79c7bfa8e06eeecb58911015e # Parent cd279de834792267e531050e2931b1730828fcde patch 8.1.0364: compiler warning in xdiff code commit https://github.com/vim/vim/commit/e797abf3c75358ebc0b31d6e076972daf889e06e Author: Bram Moolenaar Date: Mon Sep 10 21:22:15 2018 +0200 patch 8.1.0364: compiler warning in xdiff code Problem: Compiler warning in xdiff code. (Yegappan Lakshmanan) Solution: Initialize directly. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -795,6 +795,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 364, +/**/ 363, /**/ 362, diff --git a/src/xdiff/README.txt b/src/xdiff/README.txt --- a/src/xdiff/README.txt +++ b/src/xdiff/README.txt @@ -11,4 +11,6 @@ And since it's part of git it is expecte The code is distributed under the GNU LGPL license. It is included in the COPYING file. +Changes in these files were made to avoid compiler warnings. + The first work for including xdiff in Vim was done by Christian Brabandt. diff --git a/src/xdiff/xemit.c b/src/xdiff/xemit.c --- a/src/xdiff/xemit.c +++ b/src/xdiff/xemit.c @@ -169,7 +169,9 @@ int xdl_emit_diff(xdfenv_t *xe, xdchange long s1, s2, e1, e2, lctx; xdchange_t *xch, *xche; long funclineprev = -1; - struct func_line func_line = { 0 }; + struct func_line func_line; + + func_line.len = 0; for (xch = xscr; xch; xch = xche->next) { xche = xdl_get_hunk(&xch, xecfg);