diff options
| author | Shougo <Shougo.Matsu@gmail.com> | 2017-01-15 21:09:39 +0900 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2017-01-15 13:09:39 +0100 |
| commit | cecaaa84cd551c6cec06466e6ebc63239a0a76ba (patch) | |
| tree | 611f1c1d4abf65d65c2298b4d3c95612af998b43 /src/nvim/version.c | |
| parent | 192243492d591610b60005f54f56f2c94425cbd9 (diff) | |
| download | rneovim-cecaaa84cd551c6cec06466e6ebc63239a0a76ba.tar.gz rneovim-cecaaa84cd551c6cec06466e6ebc63239a0a76ba.tar.bz2 rneovim-cecaaa84cd551c6cec06466e6ebc63239a0a76ba.zip | |
vim-patch:7.4.2065 (#5950)
Problem: Compiler warns for uninitialzed variable. (John Marriott)
Solution: Set lnum to the right value.
https://github.com/vim/vim/commit/69aa099641616268bfcde9dc3aa313c677846b12
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 0fb274dc07..76dfe67204 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -375,7 +375,7 @@ static int included_patches[] = { // 2068, // 2067, 2066, - // 2065, + 2065, // 2064, // 2063 NA // 2062, |
