aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-07-19 09:12:58 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2019-07-19 15:57:19 +0200
commitaa28e070e9f953c26405d765addd9f780ede2c5a (patch)
tree0f209d5c07812b2617a2ead59ae58cf564d62c35 /src/nvim/ex_cmds.c
parent75928101f84526d92f3a38b175cdd71820526e49 (diff)
downloadrneovim-aa28e070e9f953c26405d765addd9f780ede2c5a.tar.gz
rneovim-aa28e070e9f953c26405d765addd9f780ede2c5a.tar.bz2
rneovim-aa28e070e9f953c26405d765addd9f780ede2c5a.zip
refactor: use int for Columns and Rows
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r--src/nvim/ex_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c
index df455399c4..8e12ad8366 100644
--- a/src/nvim/ex_cmds.c
+++ b/src/nvim/ex_cmds.c
@@ -1230,7 +1230,7 @@ static void do_filter(
/* Create the shell command in allocated memory. */
cmd_buf = make_filter_cmd(cmd, itmp, otmp);
- ui_cursor_goto((int)Rows - 1, 0);
+ ui_cursor_goto(Rows - 1, 0);
if (do_out) {
if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL) {