diff options
author | watiko <service@mail.watiko.net> | 2016-01-15 09:37:59 +0900 |
---|---|---|
committer | watiko <service@mail.watiko.net> | 2016-02-01 03:43:36 +0900 |
commit | b3dbc9d90b4e4f3ec627ab2a17238281097e330c (patch) | |
tree | 0e5dae4329b5192b20901b4be7491d07c27faee7 /src/nvim/version.c | |
parent | 5ef1cb5c2e77e3df70d93ade9afb54a3e989a3ee (diff) | |
download | rneovim-b3dbc9d90b4e4f3ec627ab2a17238281097e330c.tar.gz rneovim-b3dbc9d90b4e4f3ec627ab2a17238281097e330c.tar.bz2 rneovim-b3dbc9d90b4e4f3ec627ab2a17238281097e330c.zip |
vim-patch:7.4.778
Problem: Coverity warns for uninitialized variable.
Solution: Change condition of assignment.
https://github.com/vim/vim/commit/ae2fe73abc954b8fd3dbd7994daa8e31e6690bd0
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 f85547176c..84a15bec0a 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -356,7 +356,7 @@ static int included_patches[] = { 781, // 780 NA // 779, - // 778, + 778, // 777 NA 776, 775, |