diff options
author | James McCoy <jamessan@jamessan.com> | 2016-11-16 14:08:53 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-06-04 22:12:14 -0400 |
commit | 481654a88bd184ed90b87607d6798865bcc375a3 (patch) | |
tree | 01c76345c89a63c9151ba0cc5745617997a8317f | |
parent | 81be7358be00d3d75453659bcdc7efc69207ca8e (diff) | |
download | rneovim-481654a88bd184ed90b87607d6798865bcc375a3.tar.gz rneovim-481654a88bd184ed90b87607d6798865bcc375a3.tar.bz2 rneovim-481654a88bd184ed90b87607d6798865bcc375a3.zip |
vim-patch:7.4.1977
Problem: With 64 bit changes don't need three calls to sprintf().
Solution: Simplify the code, use vim_snprintf(). (Ken Takata)
https://github.com/vim/vim/commit/bde9810d6103ffe3a22a9330021cb21db1ed1792
nvim already had the equivalent code, so only the patch number was
needed.
-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 174ae2836c..2e43670edb 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -467,7 +467,7 @@ static const int included_patches[] = { 1980, // 1979, // 1978, - // 1977, + 1977, 1976, 1975, // 1974 NA |