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);