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 be0dc19..1f6df41 100644
--- a/src/channel.c
+++ b/src/channel.c
@@ -2099,7 +2099,7 @@
 {
     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 149bbaf..7852ea0 100644
--- a/src/version.c
+++ b/src/version.c
@@ -749,6 +749,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1628,
+/**/
     1627,
 /**/
     1626,