diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-07-19 09:12:58 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2019-07-19 15:57:19 +0200 |
commit | aa28e070e9f953c26405d765addd9f780ede2c5a (patch) | |
tree | 0f209d5c07812b2617a2ead59ae58cf564d62c35 /src/nvim/if_cscope.c | |
parent | 75928101f84526d92f3a38b175cdd71820526e49 (diff) | |
download | rneovim-aa28e070e9f953c26405d765addd9f780ede2c5a.tar.gz rneovim-aa28e070e9f953c26405d765addd9f780ede2c5a.tar.bz2 rneovim-aa28e070e9f953c26405d765addd9f780ede2c5a.zip |
refactor: use int for Columns and Rows
Diffstat (limited to 'src/nvim/if_cscope.c')
-rw-r--r-- | src/nvim/if_cscope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/if_cscope.c b/src/nvim/if_cscope.c index a3eabed8a0..ca2a163c57 100644 --- a/src/nvim/if_cscope.c +++ b/src/nvim/if_cscope.c @@ -1648,7 +1648,7 @@ static void cs_print_tags_priv(char **matches, char **cntxts, assert(buf_len >= 0); // Print the context only if it fits on the same line. - if (msg_col + buf_len >= (int)Columns) { + if (msg_col + buf_len >= Columns) { msg_putchar('\n'); } msg_advance(12); |