diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-21 12:36:28 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-21 12:36:28 +0100 |
commit | 3f3fbd3fdb73bdfbfeab22a9dfc7a25e38bdf5f6 (patch) | |
tree | 2aa10e5e5781026000bbcb2b16d49390a8d4c402 /src/channel.c | |
parent | 75f7265dd402665b8600fdf21ba33f19db06ac0d (diff) | |
download | vim-git-3f3fbd3fdb73bdfbfeab22a9dfc7a25e38bdf5f6.tar.gz |
patch 7.4.1628v7.4.1628
Problem: 64-bit Compiler warning.
Solution: Change type of variable. (Mike Williams)
Diffstat (limited to 'src/channel.c')
-rw-r--r-- | src/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channel.c b/src/channel.c index be0dc1938..1f6df415c 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); |