mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
refactor: use int for Columns and Rows
This commit is contained in:
@@ -3451,7 +3451,7 @@ static void display_showcmd(void)
|
||||
return;
|
||||
}
|
||||
|
||||
int showcmd_row = (int)Rows - 1;
|
||||
int showcmd_row = Rows - 1;
|
||||
grid_puts_line_start(&default_grid, showcmd_row);
|
||||
|
||||
if (!showcmd_is_clear) {
|
||||
|
Reference in New Issue
Block a user