diff options
author | James McCoy <jamessan@jamessan.com> | 2017-03-06 13:31:39 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-03-06 15:36:14 -0500 |
commit | 52e56954c6fa211246a55f7877986473d21a238b (patch) | |
tree | 64c8319173e6f71a26aeef8c6490740841ec4605 /src/nvim/version.c | |
parent | 4e3a2784ec3cb4ff79bd48f55a8edee817dec6e7 (diff) | |
download | rneovim-52e56954c6fa211246a55f7877986473d21a238b.tar.gz rneovim-52e56954c6fa211246a55f7877986473d21a238b.tar.bz2 rneovim-52e56954c6fa211246a55f7877986473d21a238b.zip |
vim-patch:7.4.2097
Problem: Warning from 64 bit compiler.
Solution: use size_t instead of int. (Mike Williams)
https://github.com/vim/vim/commit/d4f31dc45482e8db527ca044b9c3436b1e750006
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r-- | src/nvim/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index abd3b7dfc3..1771e2b95e 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -343,7 +343,7 @@ static int included_patches[] = { 2100, 2099, 2098, - // 2097, + 2097, 2096, 2095, // 2094 NA |