diff options
author | lonerover <pathfinder1644@yahoo.com> | 2016-12-27 00:25:59 +0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-12-26 11:25:59 -0500 |
commit | 18cb09e09513dc69a69578940873a455a303247b (patch) | |
tree | cd8d2662d09c6c30a84eafb8ae1edd217acfd8fd /src/nvim/ops.c | |
parent | c1d1493eb27f03e647b1e373e416e89195255d73 (diff) | |
download | rneovim-18cb09e09513dc69a69578940873a455a303247b.tar.gz rneovim-18cb09e09513dc69a69578940873a455a303247b.tar.bz2 rneovim-18cb09e09513dc69a69578940873a455a303247b.zip |
vim-patch:7.4.1780 (#5828)
Problem: Warnings reported by cppcheck.
Solution: Fix the warnings. (Dominique Pelle)
https://github.com/vim/vim/commit/dc633cf82758f67f656cda7fa8ccc30414ee53f8
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index dfa89acb1a..9e95c1a3e7 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -4607,7 +4607,7 @@ int do_addsub(int op_type, pos_T *pos, int length, linenr_T Prenum1) goto theend; } ptr = buf1; - if (negative && (!visual || (visual && was_positive))) { + if (negative && (!visual || was_positive)) { *ptr++ = '-'; } if (pre) { |