diff options
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 4ef4b69def..83853302b4 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -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) { |