From 481654a88bd184ed90b87607d6798865bcc375a3 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Wed, 16 Nov 2016 14:08:53 -0500 Subject: 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. --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit