diff options
author | James McCoy <jamessan@jamessan.com> | 2017-04-19 23:32:47 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-06-04 22:12:14 -0400 |
commit | 55c93ea16438d6bacd287460e370a49c559af514 (patch) | |
tree | 980618d49cb92a0cdc30d56b71ff872578f44bd8 /src | |
parent | c3efb2804a6bcf3b61695cd2b0c60bb16f1ec0a9 (diff) | |
download | rneovim-55c93ea16438d6bacd287460e370a49c559af514.tar.gz rneovim-55c93ea16438d6bacd287460e370a49c559af514.tar.bz2 rneovim-55c93ea16438d6bacd287460e370a49c559af514.zip |
vim-patch:7.4.2224
Problem: Compiler warnings with older compiler and 64 bit numbers.
Solution: Add "LL" to large values. (Mike Williams)
https://github.com/vim/vim/commit/af9c4c9b5761c4c074237d87e2c95713bf721eab
Equivalent change was made in ZyX's typval refactoring.
Diffstat (limited to 'src')
-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 242b2c4b69..804968af3d 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -220,7 +220,7 @@ static const int included_patches[] = { 2227, 2226, 2225, - // 2224, + 2224, 2223, 2222, 2221, |