diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-04-25 04:12:04 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-04-25 04:12:04 -0400 |
commit | 6f980346864251d2ed86d85c63fd6ec375e21edc (patch) | |
tree | e640731f2b18974afab3f83c5241f83adb1fd5a1 /src/nvim/if_cscope.c | |
parent | 588bc1d9586bc65b63519bc9d292fa4ab59b2dba (diff) | |
parent | 23e8d6d94b74c7b6d4e4c766e34500ff220abe96 (diff) | |
download | rneovim-6f980346864251d2ed86d85c63fd6ec375e21edc.tar.gz rneovim-6f980346864251d2ed86d85c63fd6ec375e21edc.tar.bz2 rneovim-6f980346864251d2ed86d85c63fd6ec375e21edc.zip |
Merge pull request #4632 from KillTheMule/vim-7.4.822
vim-patch:7.4.822
Diffstat (limited to 'src/nvim/if_cscope.c')
-rw-r--r-- | src/nvim/if_cscope.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/if_cscope.c b/src/nvim/if_cscope.c index daddd7cee4..2f9ec0b3ff 100644 --- a/src/nvim/if_cscope.c +++ b/src/nvim/if_cscope.c @@ -1062,8 +1062,8 @@ static int cs_find_common(char *opt, char *pat, int forceit, int verbose, if (qf_init(wp, tmp, (char_u *)"%f%*\\t%l%*\\t%m", *qfpos == '-', cmdline) > 0) { if (postponed_split != 0) { - win_split(postponed_split > 0 ? postponed_split : 0, - postponed_split_flags); + (void)win_split(postponed_split > 0 ? postponed_split : 0, + postponed_split_flags); RESET_BINDING(curwin); postponed_split = 0; } |