]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 7.4.1628 v7.4.1628
authorBram Moolenaar <Bram@vim.org>
Mon, 21 Mar 2016 11:36:28 +0000 (12:36 +0100)
committerBram Moolenaar <Bram@vim.org>
Mon, 21 Mar 2016 11:36:28 +0000 (12:36 +0100)
Problem:    64-bit Compiler warning.
Solution:   Change type of variable. (Mike Williams)

src/channel.c
src/version.c

index be0dc1938384783069177a28f8aa966601313606..1f6df415c39bb35cdd526bf29d034d0b32e681dd 100644 (file)
@@ -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);
index 149bbaf07f163ce0daa226e47fd0c514711f1db7..7852ea0debb348332c93f743a4c96ad51294258b 100644 (file)
@@ -748,6 +748,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1628,
 /**/
     1627,
 /**/