mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 07:58:35 +00:00
refactor: use int for Columns and Rows
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user