Skip to content

Commit 3f3fbd3

Browse files
committed
patch 7.4.1628
Problem: 64-bit Compiler warning. Solution: Change type of variable. (Mike Williams)
1 parent 75f7265 commit 3f3fbd3

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/channel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2099,7 +2099,7 @@ channel_part_info(channel_T *channel, dict_T *dict, char *name, int part)
20992099
{
21002100
chanpart_T *chanpart = &channel->ch_part[part];
21012101
char namebuf[20];
2102-
int tail;
2102+
size_t tail;
21032103
char *s;
21042104

21052105
STRCPY(namebuf, name);

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,8 @@ static char *(features[]) =
748748

749749
static int included_patches[] =
750750
{ /* Add new patch number below this line */
751+
/**/
752+
1628,
751753
/**/
752754
1627,
753755
/**/

0 commit comments

Comments
 (0)