From: Bram Moolenaar Date: Mon, 21 Mar 2016 11:36:28 +0000 (+0100) Subject: patch 7.4.1628 X-Git-Tag: v7.4.1628 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f3fbd3fdb73bdfbfeab22a9dfc7a25e38bdf5f6;p=thirdparty%2Fvim.git patch 7.4.1628 Problem: 64-bit Compiler warning. Solution: Change type of variable. (Mike Williams) --- diff --git a/src/channel.c b/src/channel.c index be0dc19383..1f6df415c3 100644 --- a/src/channel.c +++ b/src/channel.c @@ -2099,7 +2099,7 @@ channel_part_info(channel_T *channel, dict_T *dict, char *name, int part) { chanpart_T *chanpart = &channel->ch_part[part]; char namebuf[20]; - int tail; + size_t tail; char *s; STRCPY(namebuf, name); diff --git a/src/version.c b/src/version.c index 149bbaf07f..7852ea0deb 100644 --- a/src/version.c +++ b/src/version.c @@ -748,6 +748,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1628, /**/ 1627, /**/