diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-04-24 15:19:04 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-04-24 15:19:04 +0200 |
commit | 1c17ffa4611f4efe68c61f7cdd9ed692a866ba75 (patch) | |
tree | 009f678c60ced89e9f9185f848fb03fcd06d0b25 /src/normal.c | |
parent | a2aa8a2b22de909619d7faa3ff5383a6224defc5 (diff) | |
download | vim-git-1c17ffa4611f4efe68c61f7cdd9ed692a866ba75.tar.gz |
patch 8.0.1753: various warnings from a static analyserv8.0.1753
Problem: Various warnings from a static analyser
Solution: Add type casts, remove unneeded conditions. (Christian Brabandt,
closes #2770)
Diffstat (limited to 'src/normal.c')
-rw-r--r-- | src/normal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c index 89b2dc02a..84867b52f 100644 --- a/src/normal.c +++ b/src/normal.c @@ -2610,7 +2610,7 @@ do_mouse( end_visual_mode(); } } - else if (c1 < 0) + else { tabpage_T *tp; |